# Introduces continue, break while True: n = int(input("What's n? ")) if n <= 0: continue else: break for _ in range(n): print("meow")