#include //#include //using namespace atcoder; using namespace std; using ll = long long; using vll = vector; using vvll = vector; using vvvll = vector; #define all(A) A.begin(),A.end() #define rep(i, n) for (ll i = 0; i < (ll) (n); i++) bool chmax(ll& p, ll q) { if (p < q) { p = q; return 1; } else { return 0; } } bool chmin(ll& p, ll q) { if (p > q) { p = q; return 1; } else { return 0; } } ll gcd(ll(a), ll(b)) { ll c = a; while (a % b != 0) { c = a % b; a = b; b = c; } return b; } int main() { cin.tie(nullptr); ios::sync_with_stdio(false); ll N; cin>>N; ll k=0; ll p=-1; ll M=N; ll j=0; while(M>0){ if(M%2==1){ p=j; k++; } M/=2; j++; } if(k==1){ cout<<-1<<" "<<-1<<" "<<-1<