0
1
mirror of https://git.sb/baoshuo/OI-codes.git synced 2024-09-20 15:25:25 +00:00
OI-codes/Luogu/problem/P3742/P3742.cpp

19 lines
332 B
C++
Raw Normal View History

2021-06-29 11:09:48 +00:00
#include <bits/stdc++.h>
using namespace std;
int main() {
int n;
string s1, s2, g;
cin >> n >> s1 >> s2;
for (int i = 0; i < n; i++) {
g.push_back(min(s1[i], s2[i]));
if (s1[i] < s2[i]) {
cout << -1 << endl;
return 0;
}
}
cout << g << endl;
return 0;
}