fork download
  1. #include <iostream>
  2. using namespace std;
  3.  
  4. int main() {
  5. long long edycja, n;
  6.  
  7. cin >> edycja;
  8.  
  9. n = 2;
  10.  
  11. if (edycja == 1){
  12. cout << "0";
  13. return 0;
  14. }
  15.  
  16. while (edycja > n){
  17. n = n + n;
  18. }
  19.  
  20. cout << n - edycja;
  21. return 0;
  22. }
Success #stdin #stdout 0.01s 5284KB
stdin
35
stdout
29