package yukicoder104; import java.util.Scanner; public class Main { public static void main(String[] args){ Scanner sc=new Scanner(System.in); String str=sc.nextLine(); int low=1; int upper=(int)Math.pow(2,str.length()); for(int i=0;i=1){ System.out.println((int)Math.pow(2, str.length())-1+low); }else if(str.length()==0){ System.out.println(1); } } }