Python 3 Solution for URI Problem 1004 : Simple Product
Intro
Today, I have begin the series of solving first 40 problems of URI Online Judge Beginner in python 3. This is problem number 1004 and 4th post of this series. Let's dig in.
Description
Problem URL: https://www.urionlinejudge.com.br/judge/en/problems/view/1004
Input
The input file will contain 2 integer numbers.
Output
Print the message "PROD" and PROD according to the following example, with a blank space before and after the equal signal.
Samples Input
3 9 -30 10 0 9
Samples Output
PROD = 27 PROD = -300 PROD = 0
*Note: Please always check the sample output how it's given, or you will get "Presentation Error", pretty annoying.
Understanding Problem
Just find out the multiple of 2 inputs
Comments
Leave a comment
You are not LoggedIn but you can comment as an anonymous user which requires manual approval. For better experience please Login.