Cod sursa(job #2381604)
Utilizator | Data | 17 martie 2019 10:51:45 | |
---|---|---|---|
Problema | Factorial | Scor | 10 |
Compilator | cpp-64 | Status | done |
Runda | Arhiva de probleme | Marime | 0.14 kb |
#include<bits/stdc++.h>
using namespace std;
ifstream f("fact.in");
ofstream g("fact.out");
int n, p;
int main()
{
f>>n;
g<<-1;
}