10. Write a program to input a number and print its first five multiples. / sa 11 ip chapter 3, sa 12 cs chapter 6, Uncategorized / By PythonCSIP CS IP # Code a = int(input()) print(a, 2*a, 3*a, 4*a, 5*a)