The anwser for print/Input - Exercise 2 is

num1 = int(input('Enter the first number to multiply'))
num2 = int(input('Enter the second number to multiply'))
print('The inputs are %s and %s' % (num1,num2))
print('The multiplication of '+ str(num1) +'and ' + str(num2) + 'is '+ str(num1*num2))
print('The multiplication of %s and %s is %s'%(num1,num2,num1*num2))
print('The multiplication of {0} and {1} is {2}'.format(num1,num2,(num1*num2)))