2. Use a while loop to print numbers from 1 to n but skip any number that's divisible by 5 (Tips: You can use the continue statement)
Right Answer:
n = int(input("Enter a number: "))
count = 1
while count <= n:
if count % 5 != 0:
print(count)
count += 1