Cod sursa(job #965056)

Utilizator gabiclujGabi Florea gabicluj Data 23 iunie 2013 10:21:52
Problema ChatNoir Scor 100
Compilator cpp Status done
Runda Arhiva de probleme Marime 0.29 kb
#include <fstream>
using namespace std;
ifstream f("chatnoir.in");
ofstream g("chatnoir.out");
int t, x, y, n,m;
int main()
{  f>>t;
while(t--)
{        f >> n >> m >> x >> y;
     if(x<=5 || y<=5 || n-x<=4 || m-y<=4)
 g <<"DA\n";  
      else g <<"NU\n";  
  } 
   return 0;
}