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

15 lines
448 B
Text
Raw Permalink Normal View History

2019-09-12 10:33:56 -07:00
import system'math;
import extensions;
2013-04-10 16:57:12 -07:00
2019-09-12 10:33:56 -07:00
public program()
{
var a := console.loadLineTo(new Integer());
var b := console.loadLineTo(new Integer());
2013-04-10 16:57:12 -07:00
2019-09-12 10:33:56 -07:00
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
console.printLine(a," % ",b," = ",a.mod:b); // matches sign of first operand
}