Cod sursa(job #311995)

Utilizator cvicentiuCiorbaru Vicentiu Marian cvicentiu Data 4 mai 2009 21:12:31
Problema Factorial Scor 5
Compilator cpp Status done
Runda Arhiva de probleme Marime 0.18 kb
#include <stdio.h>
int p, n;

int main(){
	freopen("fact.in", "r", stdin);
	freopen("fact.out", "w", stdout);
	scanf ("%d", &p);
	
	if (p == 0) printf("1");
		

return 0;
};