"""
Topic 03: Control Flow (Conditionals & Loops) - EASY Exercises (10)
"""
# Exercise 1: Write a program that asks for a number and prints if it is positive, negative, or zero.
# Write your code below:
# Exercise 2: Print the even numbers from 1 to 20 using a for loop.
# Write your code below:
# Exercise 3: Use a while loop to print the numbers from 10 down to 1.
# Write your code below:
# Exercise 4: Ask the user for their age. If it's 18 or above, print "You can vote", otherwise print "Too young to vote".
# Write your code below:
# Exercise 5: Print the first 10 multiples of 5 using a for loop.
# Write your code below:
# Exercise 6: Sum all the numbers from 1 to 100 using a for loop and print the total.
# Write your code below:
# Exercise 7: Use a for loop to print each character of the string "PYTHON" on a new line.
# Write your code below:
# Exercise 8: Write a while loop that keeps asking for a password until the user enters "secret".
# Write your code below:
# Exercise 9: Print numbers from 1 to 10. If the number is 5, skip it using 'continue'.
# Write your code below:
# Exercise 10: Print numbers from 1 to 10. If the number is 7, stop the loop using 'break'.
# Write your code below: