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.

# Code
a = int(input())
b, c, d, e = 2*a, 3*a, 4*a, 5*a
print(a, b, c, d, e)