You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 

13 lines
238 B

  1. #include <iostream>
  2. using namespace std ;
  3. int main() {
  4. cout << "1000 36\n";
  5. for(int i = 0 ; i < 1000 ; ++i)
  6. {
  7. if(i % 36 == 1)
  8. cout << "UNDO\n";
  9. else
  10. cout << "NEW " << i << '\n';
  11. }
  12. }