Write a code to find whetr a senior citizen

age = int(input(“enter age:”))
if age >= 50
print (“senion citizen”)
else:
print (“adult”)

@lipsabehera199801

correct , keep it up.

age = int ( input ( "Enter the age of the person: " ) )
if age >= 75:
status = " Senior citizenship "
else :
status = " Not a senior citizenship "
print ( " The person is ", status )

output-
Enter the age of the person: 75
The person is Senior citizenship

Enter the age of the person: 70
The person is Not a senior citizenship

Amarjeet

@amarjeetkumar1605

correct, keep it up.
Keep Learning, Keep Practicing.