sol.cpp 432 B

1234567891011121314151617181920212223242526272829
  1. #include <bits/stdc++.h>
  2. using namespace std;
  3. #define endl '\n'
  4. typedef long long int64;
  5. typedef pair<int,int> pii;
  6. typedef vector<int> vi;
  7. const double eps = 1e-9;
  8. const int oo = 0x3f3f3f3f;
  9. const int mod = 1000000007;
  10. int main(){
  11. ios_base::sync_with_stdio(0);
  12. cin.tie(0);
  13. int n; cin >> n;
  14. int x = 0;
  15. for (int i = 0; i < n; i = min(i + 1, 0)){
  16. x++;
  17. }
  18. cout << x << endl;
  19. return 0;
  20. }