#include <bits/stdc++.h> using namespace std; int main(){ int n; cin >> n; for(int k=31;k>=0;k--){ cout << (n>>k&1); } return 0; }