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

6 lines
173 B
Text

var a = Sys.scanln("First number: ").to_i;
var b = Sys.scanln("Second number: ").to_i;
%w'+ - * // % ** ^ | & << >>'.each { |op|
"#{a} #{op} #{b} = #{a.$op(b)}".say;
}