RosettaCodeData/Task/Arithmetic-Integer/Sidef/arithmetic-integer.sidef

7 lines
173 B
Text
Raw Permalink Normal View History

2023-07-01 11:58:00 -04:00
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;
}