Cod sursa(job #1986951)
Utilizator | Data | 29 mai 2017 12:49:11 | |
---|---|---|---|
Problema | Factorial | Scor | 5 |
Compilator | c | Status | done |
Runda | Arhiva de probleme | Marime | 0.25 kb |
#include <stdio.h>
typedef unsigned long long TYPE;
TYPE find_n(TYPE p) {
return 1;
}
int main() {
freopen("fact.in", "r", stdin);
freopen("fact.out", "w", stdout);
TYPE P;
scanf("%llu", &P);
TYPE n = find_n(P);
printf("%llu\n", n);
return 0;
}