#include <iostream>

using namespace std;

int main()

{

int x,b;

cout <<"Podaj liczbe do przeliczenia"<< endl;
cin>>x;
for (x;x>= 1;x=x/2)
{
if (x%2)
cout << "1";
else cout << "0";
}
cout<<endl;

 

}