# coding: utf-8
# 自分の得意な言語で
# Let's チャレンジ!!
team = [8, 1, 3]
for i in team:
print (i)
# coding: utf-8
# 自分の得意な言語で
# Let's チャレンジ!!
#i=1 #この行はいらないのか?なぜ?
for i in range(1000):
print (i+1)
# 自分の得意な言語で
# Let's チャレンジ!!
team = [8, 1, 3]
for i in team:
#print (i)
if i<=len(team):
print(str(i)+" ", end="")
else:
print(str(i))