x = 1 print("x =", x) y = 3 print("y =", y) z = x * 5 + y / 2 w = x*5 - y/2 print("z =", z) print("w =", w) # プログラム3-9(四則演算)