Week 2: Monday -------------- Q1. (30) Input 2 positive integers a and b. Print multiplication table of a till b in given format: (example: a = 2, b = 23) 1 * 2 = 2 2 * 2 = 4 ... 11 * 2 = 22 Q2. (70) Given two dates x and y, find the number of days between them. Also, if the day of the second date y is given, then find the day of the first date. The first 3 values of input are for x, the second 3 are for y and the third value is the day of y (1 = Sunday, 2 = Monday and so on). All are positive integers. Example: If x is 15 June 1987, y is 26 Oct 2009 and day of y is 1 (i.e., Sunday), then input is 15 06 1987 26 10 2009 1 and output is Number of days = 8533 Monday