Once again Tavas started eating coffee mix without water! Keione told him that it smells awful, but he didn't stop doing that. That's why Keione told his smart friend, SaDDas to punish him! SaDDas took Tavas' headphones and told him: "If you solve the following problem, I'll return it to you."

The problem is:

You are given a lucky number n. Lucky numbers are the positive integers whose decimal representations contain only the lucky digits 4 and 7. For example, numbers 47, 744, 4 are lucky and 5, 17, 467 are not.

If we sort all lucky numbers in increasing order, what's the 1-based index of n?

Tavas is not as smart as SaDDas, so he asked you to do him a favor and solve this problem so he can have his headphones back.

Input

The first and only line of input contains a lucky number n (1 ≤ n ≤ 109).

Output

Print the index of n among all lucky numbers.

Examples

Input

4

Output

1

Input

7

Output

2

Input

77

Output

6

直接DFS爆枚所有在[1,109]内的幸运数,最多只有29个,非常少,然后判断每个幸运数是否小于等于n,统计答案即可。

long long走一波

C++版本一

DFS

#include <iostream>

using namespace std;

long long n;
int ans;
void dfs(long long  t){

    if(t>n||t>1E9) return;
    if(t<=n)ans++;
    dfs(t*10+7);
    dfs(t*10+4);
}

int main()
{   cin>>n;
    ans=0;
    dfs(4);
    dfs(7);
    cout <<ans<< endl;
    //cout << "Hello world!" << endl;
    return 0;
}

C++版本二

DFS

#include<iostream>
#include<sstream>
#include<cstdio>
#include<cmath>
#include<cstring>
#include<algorithm>
#include<vector>
#include<queue>
#include<set>
#include<map>
#include<string>
#define LL long long
#define INF 0x7fffffff
 
//freopen("E:\\in.txt","r",stdin);
 
using namespace std;
 
int ans,n;
 
void dfs(int t,int k){
    if(t>=n) return;
    if(t<n) ans++;
    if(k<1000000000) dfs(k*4+t,k*10);
    if(k<1000000000) dfs(k*7+t,k*10);
}
 
int main(){
    while(cin>>n){
        ans=1;
        dfs(4,10);dfs(7,10);
        cout<<ans<<endl;
    }
    return 0;
}