diff options
| author | omagdy7 <omar.professional8777@gmail.com> | 2022-06-28 01:03:54 +0200 |
|---|---|---|
| committer | omagdy7 <omar.professional8777@gmail.com> | 2022-06-28 01:03:54 +0200 |
| commit | 7860cb994fbf6af63865eb6dc9045bbc8abd61a4 (patch) | |
| tree | 0cf4fab4387fd47ee8c6d4e2a069cc96579df6dc /UltraFastMathmatician/main.cpp | |
| parent | 13ae5b6eaaa4779009633eda567b4f1735669ac3 (diff) | |
| download | competitive-programming-7860cb994fbf6af63865eb6dc9045bbc8abd61a4.tar.xz competitive-programming-7860cb994fbf6af63865eb6dc9045bbc8abd61a4.zip | |
solved a couple of problems from codefoces
Diffstat (limited to 'UltraFastMathmatician/main.cpp')
| -rw-r--r-- | UltraFastMathmatician/main.cpp | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/UltraFastMathmatician/main.cpp b/UltraFastMathmatician/main.cpp new file mode 100644 index 0000000..83ef653 --- /dev/null +++ b/UltraFastMathmatician/main.cpp @@ -0,0 +1,15 @@ +#include<bits/stdc++.h> + +using namespace std; + +int main () { + ios_base::sync_with_stdio(false); + cin.tie(NULL); + string s1, s2; + cin >> s1 >> s2; + string ans=""; + for(int i = 0; i < s1.size(); i++) { + ans+=((s1[i] - '0') ^ (s2[i] - '0') + '0'); + } + cout << ans << endl; +} |
