프로그래머스 - 수박수박수박수박수박수?
def solution(n): return "수박"* (n//2) if n % 2 == 0 else "수박"*(n//2) + "수"
def solution(n): s = "수박" * n return s[:n]