Cod sursa(job #2498951)

Utilizator TheNextGenerationAyy LMAO TheNextGeneration Data 24 noiembrie 2019 21:23:26
Problema Fructe Scor 100
Compilator cpp-64 Status done
Runda Arhiva de probleme Marime 0.25 kb
#include <bits/stdc++.h>

using namespace std;
ifstream in("fructe.in");
ofstream out("fructe.out");

int main()
{
    int t;
    in >> t;
    while (t--)
    {
        int a,b;
        in >> a >> b;
        out << b%2 << "\n";
    }
}