RosettaCodeData/Task/Arithmetic-Integer/PARI-GP/arithmetic-integer.parigp

9 lines
100 B
Text
Raw Permalink Normal View History

2023-07-01 11:58:00 -04:00
arith(a,b)={
print(a+b);
print(a-b);
print(a*b);
print(a\b);
print(a%b);
print(a^b);
};