#include <stdio.h> int main() { int a,b; scanf("%x %o",&a,&b);//以十六进制与八进制的形式输入 printf("%d",a+b); return 0; }
相关推荐