count = int(input())
while count > 0:
print("Hello!")
count -= 1
Copyright © 2024 SCHOLAR.TIPS - All rights reserved.
Answers & Comments
count = int(input())
while count > 0:
print("Hello!")
count -= 1