A問題 Programming Education
1 2 3 4 5 6 7 |
n = int(input()) if n == 2: a = int(input()) b = int(input()) print(a+b) else: print('Hello World') |
1 2 3 4 5 6 7 |
n = int(input()) if n == 2: a = int(input()) b = int(input()) print(a+b) else: print('Hello World') |
コメント