fork download
  1. #include <stdio.h>
  2.  
  3. int main(void)
  4. {
  5. int result = 0, temp = 0;
  6.  
  7. for(int i = 10; i <= 30; i++)
  8. {
  9. for(int j = 0; j <= 5; j++)
  10. {
  11. temp = i * j + 1;
  12. result += temp;
  13. }
  14. }
  15. printf("%d", result);
  16.  
  17. return 0;
  18. }
Success #stdin #stdout 0s 9424KB
stdin
Standard input is empty
stdout
6426