Cod sursa(job #902572)
Utilizator | Data | 1 martie 2013 15:10:18 | |
---|---|---|---|
Problema | Factorial | Scor | 10 |
Compilator | cpp | Status | done |
Runda | Arhiva de probleme | Marime | 0.2 kb |
#include<fstream>
using namespace std;
long p,x;
ifstream fin("fact.in");
ofstream fout("fact.out");
int main(){
fin>>p;
fout<<-1;
fin.close();
fout.close();
return 0;
}