보안을 그리다, 훈이

[Baekjoon/Python3] 9316번 Hello Judge 본문

Programming/Python & Data Structures

[Baekjoon/Python3] 9316번 Hello Judge

HooNeee 2020. 12. 5. 22:11

[Baekjoon/Python3] 9316번 Hello Judge

 

www.acmicpc.net/problem/9316

 

9316번: Hello Judge

한 줄에 하나의 Hello World, Judge i! 를 출력한다.

www.acmicpc.net

 

for i in range(1, int(input()) + 1):
    print('Hello World, Judge ' + str(i) + '!')
Comments