본문 바로가기
Beakjoon&프로그래머스/파이썬

[백준/파이썬] 27219번 Робинзон Крузо

by 현장 2023. 1. 16.

-Code

n = int(input())

print("V" * (n // 5) + "I" * (n % 5))