Note

[codeup] 90. 3 6 9 게임의 왕이 되자 본문

etc/Coding Test

[codeup] 90. 3 6 9 게임의 왕이 되자

알 수 없는 사용자 2021. 12. 20. 16:15
728x90
n = int(input())
for i in range(1, n+1) :
  if i%10 == 3 or i%10 == 6 or i%10 == 9: 
    print("X", end=" ")
  else: 
    print(i, end=" ")

 

Comments