#include <stdio.h>
int main(void)
{
    int a,b;
    scanf("%x",&a);
    scanf("%o",&b);
    printf("%d\n",a+b);
    return 0;
}