RosettaCodeData/Task/Arithmetic-Integer/Arturo/arithmetic-integer.arturo
2023-07-01 13:44:08 -04:00

9 lines
249 B
Text

a: to :integer input "give me the first number : "
b: to :integer input "give me the second number : "
print [a "+" b "=" a+b]
print [a "-" b "=" a-b]
print [a "*" b "=" a*b]
print [a "/" b "=" a/b]
print [a "%" b "=" a%b]
print [a "^" b "=" a^b]