#include<stdio.h>
#include<math.h>
int main()
{
    int a,b;
    scanf("%x %o",&a,&b);
    //%x是十六进制,%o是八进制
    printf("%d",a+b);
return 0;
}