← Back to List

17119번: 오색 정리 ↗

Solutions

Python 3
77 B | 77 chars
n,m=list(map(int,input().split()))
for i in range(n):
    print(i%5+1,end="")