#include <iostream>
#include "vector"
using namespace std;

int main() {
    int a, b;
    while (cin >> a ) { // 注意 while 处理多个 case
       string ans;
       if(a==0) ans="0";
       while(a!=0){
        ans=to_string(a%8)+ans;
        a/=8;
       }
        cout <<ans<< endl;
    }
}
// 64 位输出请用 printf("%lld")