python-algorithm

[백준] 15963

무적김두칠 2021. 3. 5. 15:50

1
2
3
a,b=map(int, input().split())
if a==b: print(1)
elseprint(0)
cs
반응형