## // Returns the integer value of the quotient eg 906 / 100 = 9.06 906 // 100 = 9
print(7//3) # Returns the Quotient print(7/3) # Returns Division