#include<stdio.h> void main() { int i=1; long double s=1; while(i<=100) { s=i*s; i++; } printf("%d\n",s); }