##Example 1 count=0 age=int(input("Please enter your age: ")) yearsOfService=int(input("Please enter your years of service: ")) cond=age+yearsOfService if age >= 65: count= count+ 5 elif cond >= 88: count= count+ 5 elif age >= 62 and yearsOfService >= 20: count= count+ 5 if count== 5: print("You qualify for drawing IPERS retirement") else: print("You do not yet qualify for drawing IPERS retirement") ######################### ##Example 2 age = int(input("Please enter your age: ")) service = int(input("Please enter your years of service: ")) years = age+service if years >= 88: print("You qualify for drawing IPERS retirement.") elif age >= 62 and service >=20: print("You qualify for drawing IPERS retirement.") elif age >= 65: print("You qualify for drawing IPERS retirement.") else: print("You do not yet qualify for drawing IPERS retirement.") ######################### ##Example 3 age = int(input("Please enter your age: ")) years = int(input("Please enter your years of service: ")) if age+years>=88 or (age>=62 and years>=20) or age>=65: print("You qualify for drawing IPERS retirement.") else: print("You do not yet qualify for drawing IPERS retirement.")