fork download
  1. #include <iostream>
  2. using namespace std;
  3.  
  4. int main()
  5. {
  6. int operatorcounter=0;
  7. for(int i=0;i<4;i=i+1)
  8. {
  9. for(int j=0;j<3;j=j+1)
  10. {
  11. operatorcounter=operatorcounter+1;
  12. for(int k=0;k<6;k=k+1)
  13. {
  14. operatorcounter=operatorcounter+2;
  15. }
  16. }
  17. }
  18. cout<<operatorcounter;
  19. }
Success #stdin #stdout 0s 3096KB
stdin
Standard input is empty
stdout
156