Cod sursa(job #801484)
| Utilizator | Data | 24 octombrie 2012 15:30:32 | |
|---|---|---|---|
| Problema | Factorial | Scor | 5 |
| Compilator | cpp | Status | done |
| Runda | Arhiva de probleme | Marime | 0.18 kb |
#include<fstream>
using namespace std;
ifstream in("fact.in");
ofstream out("fact.out");
int p;
int main()
{
in>>p;
out<<p*5;
in.close();
out.close();
return 0;
}
