Skip to content

Commit 955720e

Browse files
committed
61A.Ultra-Fast_ Mathematician added
1 parent e11f8b8 commit 955720e

File tree

1 file changed

+22
-0
lines changed

1 file changed

+22
-0
lines changed

61A.Ultra-Fast_Mathematician.cpp

+22
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,22 @@
1+
#include <bits/stdc++.h>
2+
using namespace std;
3+
4+
int main()
5+
{
6+
string n,m;
7+
cin>>n>>m;
8+
for(int i = 0; i<n.size(); i++)
9+
{
10+
if(n[i] == m[i])
11+
{
12+
n[i] = '0';
13+
}
14+
else
15+
{
16+
n[i] = '1';
17+
}
18+
}
19+
20+
cout<<n<<endl;
21+
return 0;
22+
}

0 commit comments

Comments
 (0)