#include using namespace std; using ll = long long; #define fi first #define se second int main(){ ll x; cin>>x; ll pow2[40]; pow2[0]=1; for(int i=1;i<40;i++){ pow2[i]=pow2[i-1]*2; if(pow2[i-1]==x){ cout<<"-1 -1 -1"<