← Back to List

27219번: Робинзон Крузо ↗

Solutions

Python 3
44 B | 44 chars
n = int(input())
print("V"*(n//5)+"I"*(n%5))