# While Loop
"""
1.While Loop
2.For Loop
"""
i = 1
while i <= 10:
    print(i)
    i += 1
print("--------------------")
print("Even No : ")
n = 20
i = 2
while i <= 20:
    print(i)
    i += 2
