#include<bits/stdc++.h> using namespace std; int a,ans,w=1; int main(){ cin>>a; while(a){ ans+=a%10*w; a/=10; w*=8; } cout<<ans; return 0; }