Practice Problem - Multiplication

Introduction

The problem is intended to give teams a chance to use the labs without the pressure of competition. The problem is to write a program than inputs two numbers and outputs their product.

Input

The input will consist of two integers, each on a separate line with no leading or trailing whitespace.

Output

The output must consist of a single line of output that contains the product of the two inputs. There should be no leading or trailing whitespace in the product.

Example

Input:
7
8

Output:

56