#include <stdio.h> int main() { int a,b,c; scanf("%X",&a); scanf("%o",&b); printf("%d",c= a+b); return 0; }
%X : 代表输入的是16进制的数。
%o :代表输入的是8进制的数。