백준 BAEKJOON 9316번 Hello Judge [PYTHON/파이썬] https://www.acmicpc.net/problem/9316 9316번: Hello Judge 한 줄에 하나의 Hello World, Judge i! 를 출력한다. www.acmicpc.net format을 사용하면 쉽게 풀 수 있는 문제다. N = int(input()) for i in range(1, N+1) : print("Hello World, Judge {}!".format(i))