def take(k):
#1st number code
if k==1:
print("-----------------------------------")
print ("You entered in Aman Health care \n")
print("-----------------------------------")
c=int(input("enter 1 for ex 2 for health:"))
if c==1:
print("***********************************")
print("you entered in excersice part")
print("***********************************")
elif c==2:
print("***********************************")
print ("\nYou entered in Aman health care ")
print("***********************************")
print("\n\t*****Thanks for visit us*****")
#2nd
elif k==2:
print("-----------------------------------")
print ("You entered in Preet Health care \n")
print("-----------------------------------")
c=int(input("enter 1 for ex 2 for health:"))
if c==1:
print("***********************************")
print("you entered in excersice part")
print("***********************************")
elif c==2:
print("***********************************")
print ("\nYou entered in Aman health care ")
print("***********************************")
print("\n\t*****Thanks for visit us*****")
#3rd number code
elif k==3:
print("-----------------------------------")
print ("You entered in singh care \n")
print("-----------------------------------")
c=int(input("enter 1 for ex 2 for health:"))
if c==1:
print("***********************************")
print("you entered in excersice part")
print("***********************************")
elif c==2:
print("***********************************")
print ("\nYou entered in Aman health care ")
print("***********************************")
print("\n\t*****Thanks for visit us*****")
print("health management system: ")
a=int(input("press 1 for lock the value and 2 for retrieve "))
if a==True:
b = int(input("press 1 for Aman 2 for preet 3 for singh "))
take(b)
else:
print("\n\t\tComming soon")
Comments
Post a Comment