Cod sursa(job #2387373)
| Utilizator | Data | 24 martie 2019 16:01:47 | |
|---|---|---|---|
| Problema | Factorial | Scor | 10 |
| Compilator | cpp-64 | Status | done |
| Runda | Arhiva de probleme | Marime | 0.15 kb |
#include <bits/stdc++.h>
using namespace std;
ifstream f("fact.in");
ofstream g("fact.out");
int main()
{ int n;
f>>n;
g<<-1;
return 0;
}
