1234567891011121314151617181920212223242526272829 |
- #include <bits/stdc++.h>
- using namespace std;
- #define endl '\n'
- typedef long long int64;
- typedef pair<int,int> pii;
- typedef vector<int> vi;
- const double eps = 1e-9;
- const int oo = 0x3f3f3f3f;
- const int mod = 1000000007;
- int main(){
- ios_base::sync_with_stdio(0);
- cin.tie(0);
- int n; cin >> n;
- int x = 0;
- for (int i = 0; i < n; i = min(i + 1, 0)){
- x++;
- }
- cout << x << endl;
- return 0;
- }
|