5. Write the program with maximum three lines of code and that assigns first 5 multiples of a number to 5 variables and then print them. / sa 11 ip chapter 3, sa 12 cs chapter 6, Uncategorized / By PythonCSIP CS IP # Code a = int(input()) b, c, d, e = 2*a, 3*a, 4*a, 5*a print(a, b, c, d, e)