1. For the following code fragment: a = int(input("enter number ")) b = int(input("enter number ")) if(a + b > 10): print("hello") else: print("python") give an example of the input to receive the following output: hello 2. For the following code fragment: a = int(input("enter number ")) b = int(input("enter number ")) k = a%10 + b%10 if(k%2): print("hello") else: print("python") give an example of the input, if it exists, to receive the following output: python 3. For the following code fragment: a = int(input("enter number ")) b = int(input("enter number ")) if(a % 3 >= 2): print("hello") else: print("python") if((a + b) != (5//2)): print("hello") else: print("python") if(a == (2%3)): print("hello") else: print("python") give an example of the input, if it exists, to receive the following output: hello python hello 4. For the code fragment in the previous example, give an example of the input, if exists, to receive the following output: python python hello 5. What is the output of the following code fragment? a = 17 b = 5 if((a % b > 5) or (a % 2)): print("hello") else: print("python") 6. What is the output of the following code fragment? a = 17 b = 5 c = 6 d = not(c % 2 and a > b) if(d): print("hello") else: print("python") 7. What is the output of the following code fragment? a = 17, b = 5, c = 6; d = c % 4 and a < b or not(a) if(d): print("hello") elif(c % 2): print("python") else: print("program")