Cod sursa(job #2255414)
| Utilizator | Data | 6 octombrie 2018 21:49:56 | |
|---|---|---|---|
| Problema | Factorial | Scor | 0 |
| Compilator | cpp | Status | done |
| Runda | Arhiva de probleme | Marime | 0.19 kb |
#include <iostream>
#include <fstream>
using namespace std;
ifstream fin("fact.in");
ofstream fout("fact.out");
int main()
{
int p;
fin>>p;
fout(5*p);
return 0;
}
