#include <iostream>
#include <string>
using namespace std;

int main(){
    int n;
    string ans;
    while(scanf("%d",&n)!=EOF){
        ans.clear();
        while(n!=0){
            int tmp=n%2;
            char char_tmp=tmp+'0';
            ans=char_tmp+ans;
            n/=2;
        }
        cout<<ans<<endl;
    }
    return 0;
}

这是小明,小明带你复习无符号数的二进制表示,说:谢谢小明。