Write a program to check whether a person is senior citizen or not?

def check_age(age):
if age>=60:
print(“the person is senior citizen”)
else:
print(" the person is not senior citizen")
check_age(50)

@A_Abhiram

you are correct , keep it up
try to take the input dynamically .