#ABC152B. Comparing Strings

Comparing Strings

题目描述

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?

给出了 11 个数字正整数 aabb 。考虑这两个字符串:数字 aabb 份数的连接,以及数字 bbaa 份数的连接。哪一个在词法上更小?

输入格式

输入内容按以下格式标准输入:

aa bb

输出格式

打印两个字符串中按词序排列的较小字符串。(如果两个字符串相等,则打印其中一个)。

样例 #1

样例输入 #1

4 3

样例输出 #1

3333

样例 #2

样例输入 #2

3333

样例输出 #2

7777777

说明

数据规模与约定

  • 1a91 \leq a \leq 9
  • 1b91 \leq b \leq 9
  • aabb 都是整数。

样例 11 解释

我们有两个字符串 4443333 。在这两个字符串中,3333的词性较小。