下面哪段程序可以计算用户输入的两个整数a与b的乘积?( )
a = int(input())
b = int(input())
print(a + b)
print(a * b)
a = input()
b = input()