Question #203580

write python code multiply the two input values and then print the result of the multiplication.

Expert's answer

  1. j = input("Input dollars") 
  2.  
  3. j = int(j) # Super important. You could've also done : j = int(input("Input dollars")) 
  4.  
  5. b = 5 
  6.  
  7. print(j * b) 
LATEST TUTORIALS
APPROVED BY CLIENTS