import java.util.Scanner;
import java.math.BigInteger;
public class Main{
public static void main(String[] args) {
Scanner sc = new Scanner(System.in);
String str = sc.nextLine();
BigInteger bigInteger = new BigInteger(str,16);
System.out.println(bigInteger);
}
}