Arithmetic/Integer: Difference between revisions

(LSE64)
Line 218:
print "Difference: %d" % (x - y)
print "Product: %d" % (x * y)
print "Quotient: %d" % (x / y) # or x // y for newer python versions.
print "Remainder: %d" % (x % y)
Anonymous user