Cod sursa(job #2274268)

Utilizator memecoinMeme Coin memecoin Data 1 noiembrie 2018 16:49:34
Problema Fructe Scor 100
Compilator cpp-64 Status done
Runda Arhiva de probleme Marime 0.34 kb
#include <stdio.h>
#include <vector>
#include <algorithm>
#include <math.h>
 
using namespace std;
 
int main() {
	freopen("fructe.in", "r", stdin);
	freopen("fructe.out", "w", stdout);

	int t;
	scanf("%d", &t);

	for (int i = 0; i < t; ++i) {
		int p, b;
		scanf("%d %d", &p, &b);
		printf("%d\n", b % 2);
	}

	return 0;
}