fork download
  1. #include <bits/stdc++.h>
  2. using namespace std;
  3.  
  4. int main() {
  5.  
  6. int n;
  7. cin >> n;
  8. int i =0 ;
  9. while (i<=n)
  10. i+=2;
  11. cout << i << endl;
  12.  
  13.  
  14.  
  15.  
  16. }
Success #stdin #stdout 0s 5304KB
stdin
10
stdout
12