#include <stdio.h> int main() { int a, b; scanf("%x%o", &a, &b); int sum = a + b; printf("%d", sum); return 0; }
相关推荐