#include <stdio.h>
#include <string.h>


//%x c 读取16进制数

int main()
{
int a;
while(scanf("%x",&a)!=EOF)
printf("%d\n",a);

return 0;
}