9 lines
249 B
Text
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]
|