fork download
  1. #include <iostream>
  2. #include <string>
  3.  
  4. using namespace std;
  5.  
  6. int main(void)
  7. {
  8. int n, cnt = 0;
  9. cin >> n;
  10.  
  11. for (int i = 666; ; i++)
  12. {
  13. if (to_string(i).find("666") != string::npos)
  14. cnt++;
  15. if (n == cnt)
  16. {
  17. cout << i;
  18. break;
  19. }
  20. }
  21. return 0;
  22. }
Success #stdin #stdout 0s 4852KB
stdin
1
stdout
666