ループ処理の練習のような問題です.
# ITP1_3_A
for _ in range(1000):
print("Hello World")
# ITP1_3_B
i = 0
while True:
i += 1
x = input()
if x == "0": # 入力を文字列として受け取っていることに注意
break
print(f"Case {i}: {x}")
# ITP1_3_C
while True:
x,y = map(int,input().split(" "))
if x==0 and y==0:
break
if x < y:
print(x,y)
else:
print(y,x)
# ITP1_3_D
a,b,c = map(int,input().split(" "))
cnt = 0
for n in range(a,b+1):
if c%n == 0:
cnt += 1
print(cnt)