Answer No : 4 :
num1=int(input("Enter first number "))
num2=int(input("Enter second number "))
product=0
for i in range (1,num2+1): 
     product=product+num1      
print("The multiply is: ",product)
Output:
Enter first number 6
Enter second number 7
The multiply is: 42