RosettaCodeData/Task/Arithmetic-Integer/Wart/arithmetic-integer.wart
2016-12-05 23:44:36 +01:00

9 lines
182 B
Text

a <- (read)
b <- (read)
prn "sum: " a+b
prn "difference: " a-b
prn "product: " a*b
prn "quotient: " a/b
prn "integer quotient: " (int a/b)
prn "remainder: " a%b
prn "exponent: " a^b