main => X = read_int(), Y = read_int(), foreach (Op in [+,-,*,div,rem]) R = apply(Op,X,Y), printf("%d %w %d = %d\n", X, Op, Y, R) end.