100 atcoder#ABC152B. [ABC152B] Comparing Strings

[ABC152B] Comparing Strings

Score : 200200 points

Problem Statement

Given are 11-digit positive integers aa and bb. Consider these two strings: the concatenation of bb copies of the digit aa, and the concatenation of aa copies of the digit bb. Which of these is lexicographically smaller?

Constraints

  • 1a91 \leq a \leq 9
  • 1b91 \leq b \leq 9
  • aa and bb are integers.

Input

Input is given from Standard Input in the following format:

aa bb

Output

Print the lexicographically smaller of the two strings. (If the two strings are equal, print one of them.)

4 3
3333

We have two strings 444 and 3333. Between them, 3333 is the lexicographically smaller.

7 7
7777777