Cod sursa(job #775856)

Utilizator Andrei.XweCobzaru Adrian-Andrei Andrei.Xwe Data 9 august 2012 11:02:46
Problema ChatNoir Scor 100
Compilator cpp Status done
Runda Arhiva de probleme Marime 0.28 kb
#include<fstream>
using namespace std;
int main()
{
	ifstream fcin("chatnoir.in");
	ofstream fcout("chatnoir.out");
	int t,n,m,x,y;
	fcin>>t;
	while(t--)
	{
		fcin>>n>>m>>x>>y;
		if(x<6 || n-x<5 || y<6 || m-y<5)
			fcout<<"DA\n";
		else
			fcout<<"NU\n";
	}
	return 0;
}