RosettaCodeData/Task/Arithmetic-Integer/Elena/arithmetic-integer.elena

16 lines
495 B
Text
Raw Permalink Normal View History

2023-07-01 11:58:00 -04:00
import system'math;
import extensions;
public program()
{
var a := console.loadLineTo(new Integer());
var b := console.loadLineTo(new Integer());
console.printLine(a," + ",b," = ",a + b);
console.printLine(a," - ",b," = ",a - b);
console.printLine(a," * ",b," = ",a * b);
console.printLine(a," / ",b," = ",a / b); // truncates towards 0
2024-03-06 22:25:12 -08:00
console.printLine(a," % ",b," = ",a.mod(b)); // matches sign of first operand
2023-07-01 11:58:00 -04:00
console.printLine(a," ^ ",b," = ",a ^ b);
}