RosettaCodeData/Task/Arithmetic-Integer/Wart/arithmetic-integer.wart

10 lines
182 B
Text
Raw Permalink Normal View History

2023-07-01 11:58:00 -04:00
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