a: input "Enter an integer: " |to-integer b: input "Enter another integer: " |to-integer print "sum: " ++ a + b print "difference: " ++ a - b print "product: " ++ a * b print "quotient: " ++ a // b ; rounds toward zero print "remainder: " ++ a % b ; same sign as the first arg print "power: " ++ a .math/pow b