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

7 lines
173 B
Text
Raw Permalink Normal View History

2016-12-05 23:44:36 +01: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;
}