#abc232a. [abc232_a]QQ solver

[abc232_a]QQ solver

Problem Statement

You are given a 33-character string SS, which is a concatenation of integers aa and bb between 11 and 99 (inclusive) and the character x in this order: axb.

Find the product of aa and bb.

Constraints

  • The length of SS is 33.
  • The 11-st and 33-rd characters are digits between 11 and 99 (inclusive).
  • The 22-nd character is x.

Input

Input is given from Standard Input in the following format:

SS

Output

Print the answer.


Sample Input 1

3x7

Sample Output 1

21

We have 3times7=213 \\times 7 = 21, which should be printed.


Sample Input 2

9x9

Sample Output 2

81

Sample Input 3

1x1

Sample Output 3

1