Not
Problem LinkSolution by augusto — 100 pts
Code / Notes
#include <bits/stdc++.h>
using namespace std;
int main() {
int x;
cin >> x;
cout << 1 - x << endl;
return 0;
}
Last updated 3 weeks, 3 days ago
Solution by augusto — 100 pts
#include <bits/stdc++.h>
using namespace std;
int main() {
int x;
cin >> x;
cout << 1 - x << endl;
return 0;
}
Last updated 3 weeks, 3 days ago