Question 1 (20 points) a. Write an example of the input to receive the following output: 10 b. Write an example of the input to receive the following output: 6 def guess(a,b): if(a < b): result = a - a*3 else: result = b//2 print(result) def main(): a = int(input("enter a ")) b = int(input("enter b ")) guess(a,b) main()