Book a Demo!
Store
Features
Docs
Share
Support
News
About
Policies
Sign Up
Sign In
goelp14
Edit Copy
Star
GitHub Repository:
goelp14/easyctf-iv-problems
Path:
blob/master/prog_xor/grader.py
6
5
0
views
1
a
,
b
=
map
(
int
,
input
(
)
.
split
(
" "
)
)
2
3
print
(
a
^
b
)
4
5