RosettaCodeData/Task/Arithmetic-Integer/Fermat/arithmetic-integer.fermat

9 lines
212 B
Plaintext

?a;
?b;
!!('Sum: a+b=',a+b);
!!('Difference: a-b=',a-b);
!!('Product: a*b=',a*b);
!!('Integer quotient: a\b=',a\b);
!!('Remainder: a|b=',a|b);
!!('Exponentiation: a^b=',a^b);