Cod sursa(job #1526877)
Utilizator | Data | 17 noiembrie 2015 16:03:46 | |
---|---|---|---|
Problema | Factorial | Scor | 5 |
Compilator | cpp | Status | done |
Runda | Arhiva de probleme | Marime | 0.19 kb |
#include <iostream>
#include <fstream>
using namespace std;
int main()
{
ifstream fin("fact.in");
ofstream fout("fact.out");
long long a;
fin >> a;
fout << a*5;
return 0;
}