Cod sursa(job #2737932)
Utilizator | Data | 5 aprilie 2021 12:27:21 | |
---|---|---|---|
Problema | Felinare | Scor | 0 |
Compilator | cpp-64 | Status | done |
Runda | oni_wellcode_day_5 | Marime | 0.21 kb |
#include <bits/stdc++.h>
using namespace std;
ifstream fin("felinare.in");
ofstream fout("felinare.out");
int main() {
int n;
fin >> n;
if (n == 1)
fout << 0;
else
fout << 1;
}