print("Mathematically -7//2 = -3") print("Output of Python: -7//2") print(-7//2) print("Mathematically -17//3 = -5") print("Output of Python: -17//3") print(-17//3) print("Mathematically -24//5 = -4") print("Output of Python: -24//5") print(-24//5) print("\n") print("Verified for several other examples")