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

8 lines
173 B
Text

def arithmetic(a :int, b :int) {
return `$\
Sum: ${a + b}
Difference: ${a - b}
Product: ${a * b}
Quotient: ${a // b}
Remainder: ${a % b}$\n`
}