← Back to List

6888번: Terms of Office ↗

Solutions

Python 3
109 B | 109 chars
a = int(input())
b = int(input())

for i in range(a, b+1, 60):
    print(f"All positions change in year {i}")