mirror of
https://github.com/tiennm99/codeforces.git
synced 2026-06-09 14:11:38 +00:00
22 lines
302 B
C++
22 lines
302 B
C++
#include <iostream>
|
|
|
|
using namespace std;
|
|
|
|
int main()
|
|
{
|
|
string s1, s2;
|
|
cin >> s1 >> s2;
|
|
for (unsigned int i = 0; i < s1.length(); i++)
|
|
{
|
|
if (s1[i] == s2[i])
|
|
{
|
|
cout << 0;
|
|
}
|
|
else
|
|
{
|
|
cout << 1;
|
|
}
|
|
}
|
|
return 0;
|
|
}
|