Problem2183--Two Numbers multiplied

2183: Two Numbers multiplied

Time Limit: 1 Sec  Memory Limit: 128 MB
Submit: 0  Solved: 0
[Submit] [Status] [Web Board] [Creator:]

Description

This problem requires writing a definition for a void-function that has two int value parameters and outputs to the screen the product of these arguments. Please write a main function that asks the user for these two numbers, reads them in, calls your function, then terminates.

Input

Given two positive integers x and y

Output

Output the result of multiplying two numbers

Sample Input Copy

2,5

Sample Output Copy

10

Source/Category

3