Cod sursa(job #2246406)

Utilizator jitaruandreiJitaru Andrei Catalin jitaruandrei Data 27 septembrie 2018 08:37:31
Problema Xerox Scor 0
Compilator cpp Status done
Runda Arhiva de probleme Marime 0.29 kb
#include <bits/stdc++.h>

using namespace std;

ifstream fin("xerox.in");
ofstream fout("xerox.out");
int teste,pagini,dimx,dimy;

int main()
{
    /*
    1
    2 10 10
    1 6 6
    1 5 5
    */
    fin>>teste;
    fin>>pagini>>dimx>>dimy;
    fout << pagini%2;
    return 0;
}