#Write a program that prompts the user to enter one integer. The program will do the #following: if the input number is 1, the program will print your name 3 times; if the #input number is 2, the program will find the sum of all even numbers between 0 and #10, otherwise, the program will print "I love Python language" 5 times. choice=int(input("enter your choice ")) if(choice==1): i=1 #if you start i=0 then look condition should be while(i<3) while(i<=3): print("Yana") i=i+1 elif(choice==2): i=0 sum=0 while(i<=10): if(i%2==0): sum=sum+i i=i+1 print("sum", sum) #Different solution: i=2 sum=0 while(i<=10): sum=sum+i i=i+2 print("sum",sum) else: i=0 while(i<5): print("I love Python") i=i+1