fork download
  1. num1 = float(input("Enter the first number: "))
  2. num2 = float(input("Enter the second number: "))
  3.  
  4. product = num1 * num2
  5.  
  6. print(f"The multiplication of {num1} and {num2} is: {product}")
  7.  
Success #stdin #stdout 0.12s 14184KB
stdin
50
20
stdout
Enter the first number: Enter the second number: The multiplication of 50.0 and 20.0 is: 1000.0