io加速很好用
// ios_base::sync_with_stdio(false);
// cin.tie(NULL);
z03196ru.4d042k72l4xk7
#include<bits/stdc++.h>
#define endl '\n'
using namespace std;
int main(){
ios_base::sync_with_stdio(false);
cin.tie(NULL);
int x;
while (cin >> x && x != 0) {
int a = 0;
for (int i = 1; i * (i + 1) / 2 < x; i++) {
if ((x - i * (i + 1) / 2) % (i + 1) == 0) {
a++;
}
}
cout << a << endl;
}
return 0;
}