Cod sursa(job #465786)
Utilizator | Data | 25 iunie 2010 13:09:04 | |
---|---|---|---|
Problema | Mesaj4 | Scor | 0 |
Compilator | cpp | Status | done |
Runda | Stelele Informaticii 2010, gimnaziu si clasa a IX-a, Ziua 1 | Marime | 0.24 kb |
#include <stdio.h>
long int n, m;
int main ()
{
FILE *f = fopen ("mesaj4.in","r");
FILE *g = fopen ("mesaj4.out","w");
fscanf (f,"%ld %ld", &n, &m);
fprintf (g,"-1");
fclose(g);
fclose(f);
return 0;
}