Cod sursa(job #244768)

Utilizator ooctavTuchila Octavian ooctav Data 15 ianuarie 2009 22:59:27
Problema Loto Scor 0
Compilator cpp Status done
Runda Arhiva de probleme Marime 0.24 kb
// loto.cpp : Defines the entry point for the console application.
//

#include "stdio.h"

int main()
{
	FILE *f1,*f2;
	f1=fopen("loto.in","r");
	f2=fopen("loto.out","w");
	fprintf(f2,"-1");
	fclose(f1);
	fclose(f2);
	return 0;
}