Cod sursa(job #2776968)

Utilizator BlueLuca888Girbovan Robert Luca BlueLuca888 Data 21 septembrie 2021 18:43:17
Problema ChatNoir Scor 0
Compilator cpp-64 Status done
Runda Arhiva de probleme Marime 0.27 kb
#include <bits/stdc++.h>

using namespace std;

ifstream fin  ("chatnoir.in");
ofstream fout ("chatnoir.out");

int teste;
int n, m, x, y;

int main (){
    fin>>teste;
    while(teste--){
        fin>>n>>m>>x>>y;
        fout<<"NU\n";
    }
    return 0;
}