#include <iostream>
#include <string>
#include <algorithm>
using namespace std;
int main(void)
{
string a, b;
cin >> a >> b;
if (a.size() == 3 and b.size() == 3)
{
reverse(a.begin(), a.end());
reverse(b.begin(), b.end());
if (a > b)
cout << a;
else
cout << b;
}
return 0;
}
'Computer Science > 백준 알고리즘' 카테고리의 다른 글
[백준] 3009번 네 번째 점 (파이썬) (0) | 2022.06.14 |
---|---|
[백준] 2941번 크로아티아 알파벳 (파이썬) (0) | 2022.06.14 |
[백준] 2884번 알람 시계 (C++) (0) | 2022.06.14 |
[백준] 2875번 대회 or 인턴 (파이썬) (0) | 2022.06.14 |
[백준] 2864번 5와 6의 차이 (파이썬) (0) | 2022.06.14 |