Cod sursa(job #277750)

Utilizator crenguBacaoanu Crenguta crengu Data 11 martie 2009 21:29:44
Problema Xerox Scor 0
Compilator cpp Status done
Runda Arhiva de probleme Marime 0.16 kb
#include<fstream.h>
int main()
{
 int x;
 ifstream f("xerox.in");
 ofstream g("xerox.out");
 f>>x;
 g<<"1";

 f.close ();
 g.close ();
 return 0;
 }