import math as m
def print_word(N, W, retries = 4):
for _ in retries:
if(N > 100 or N < 0 or len(W) > 50):
print("Number is out of range or word is too large. Try again.")
new_word = str(input("New word: "))
new_num = int(input("New number: "))
if(new_num >= 0 and new_num <= 100 and len(W) <= 50):
for row in new_num:
print(new_word)
return "Thank you for your time!"
if(N >= 0 and N <= 100 and len(W) <= 50):
for row in N:
print(W)
return "Thank you for your time!"
try:
N = m.floor(int(input("Enter a number from 0 to 100: " )))
W = str(input("Enter a word: "))
except ValueError:
print("Invalid Input!")
print(print_word(N,W))