Multiplication

View as PDF

Submit solution

Points: 100
Time limit: 1.0s
Memory limit: 488M

Author:
Problem type

Problem Statement

You are given two integers a and b. Determine their multiplication.

Input Format

Your only line of input will contain two space-separated integers a and b respectively.

Output Format

You should output the multiplication of the two integers, i.e. a \cdot b.

Constraints

  • 1 \leq a \leq 10^9
  • 1 \leq b \leq 10^9

Sample Cases

Input 1
10 20
Output 1
200

Template

temp = input().split()
a = int(temp[0])
b = int(temp[1])
# print your output

Comments

There are no comments at the moment.