#ABC152B. Comparing Strings
Comparing Strings
题目描述
Given are -digit positive integers and . Consider these two strings: the concatenation of copies of the digit , and the concatenation of copies of the digit . Which of these is lexicographically smaller?
给出了 个数字正整数 和 。考虑这两个字符串:数字 的 份数的连接,以及数字 的 份数的连接。哪一个在词法上更小?
输入格式
输入内容按以下格式标准输入:
输出格式
打印两个字符串中按词序排列的较小字符串。(如果两个字符串相等,则打印其中一个)。
样例 #1
样例输入 #1
4 3
样例输出 #1
3333
样例 #2
样例输入 #2
3333
样例输出 #2
7777777
说明
数据规模与约定
- 和 都是整数。
样例 解释
我们有两个字符串 444
和 3333
。在这两个字符串中,3333
的词性较小。