fork download
  1. #include <stdio.h>
  2. int main(){
  3. int x = 0;
  4. int n = 20;
  5. int i, j;
  6. for(i=0; i<n; i++)
  7. {
  8. for(i=0; i<n; i++)
  9. {
  10. for(j=0; j<n; j++)
  11. {
  12. x++;
  13. }
  14. }
  15. }
  16. printf("%d", x);
  17. }
Success #stdin #stdout 0s 2896KB
stdin
Standard input is empty
stdout
400