prog3_1.py

a = 20 + 50
print(a)
b = "20" + "50"
print(b)

# プログラム3-1(整数・文字列の加算)