Cod sursa(job #275921)
Utilizator | Data | 10 martie 2009 18:58:52 | |
---|---|---|---|
Problema | Factorial | Scor | 0 |
Compilator | cpp | Status | done |
Runda | Arhiva de probleme | Marime | 0.19 kb |
#include<iostream.h>
#include<fstream.h>
ifstream f("fact.in");
ofstream g("fact.out");
main()
{
long p;
f>>p;
f.close();
g<<'-1';
g.close();
}