#the person would like to take a loan #loan conditions: annual salary at least 50000 and years at the same work #place at least 5 years #write a program that reads salary and years at work and outputs the #eligibility statement #discussion #input: two inputs, salaray- float and years - integer, #output: message #if-else, and logical operator #Input limitations: both inputs positive #Input salary=float(input("enter salary ")) years=int(input("enter years ")) #Calculations and Output if(salary>0 and years>0): if(salary>=50000 and years>=5): print("eligible") else: print("not eligible") else: print("invalid input")