while(True):
print("Enter the number :- ")
n1 = int(input())
if(n1>100):
print("You are enter greate than 100 number .... great")
break
elif n1<100:
print("Please re eneter the value")
continue
while(True):
print("Enter the number :- ")
n1 = int(input())
if(n1>100):
print("You are enter greate than 100 number .... great")
break
elif n1<100:
print("Please re eneter the value")
continue
0Comments
Thanks you for commenting your questions. I will see question and respond you.