fork download
  1. /******************************************************************************
  2.  
  3. Welcome to GDB Online.
  4. GDB online is an online compiler and debugger tool for C/C++.
  5. Code, Compile, Run and Debug online from anywhere in world.
  6.  
  7. *******************************************************************************/
  8.  
  9. #include <stdio.h>
  10. int main() {
  11. int n;
  12. long fact = 1;
  13. scanf("%d", &n);
  14. for (int i = 1; i <= n; ++i)
  15. fact *= i;
  16. printf("%llu\n", fact);
  17. return 0;
  18. }
  19.  
Success #stdin #stdout 0s 5312KB
stdin
45
stdout
9649395409222631424