fork download
  1. #include <iostream>
  2. using namespace std;
  3.  
  4. int main() {
  5. int a;
  6. cin >> a;
  7. while (a % 13 != 0){
  8. cout << a << endl;
  9. a = a + 1;
  10. }
  11. return 0;
  12. }
Success #stdin #stdout 0s 5316KB
stdin
20
stdout
20
21
22
23
24
25