문제
풀이
#include <iostream>
using namespace std;
void solve(void) {
long long n, m; cin >> n >> m;
cout << (n == m ? "1" : "0");
}
int main(void) {
ios::sync_with_stdio(false);
cin.tie(nullptr);
solve();
return 0;
}#include <iostream>
using namespace std;
void solve(void) {
long long n, m; cin >> n >> m;
cout << (n == m ? "1" : "0");
}
int main(void) {
ios::sync_with_stdio(false);
cin.tie(nullptr);
solve();
return 0;
}