fork download
  1. #include <iostream>
  2. using namespace std;
  3.  
  4. main() {
  5. int i =0;
  6. cout<<(+(+i--))<<endl;
  7. while(+(+i--)!= 0)
  8. i-=i++;
  9. cout<<i;
  10. }
  11.  
  12.  
Time limit exceeded #stdin #stdout 5s 3096KB
stdin
Standard input is empty
stdout
0