RosettaCodeData/Task/Arithmetic-Integer/Wart/arithmetic-integer.wart
2023-07-01 13:44:08 -04: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