#include<stdio.h>using namespace std;int main(){ int a; printf("十六進位表示法 相對應的十進位表示法\n"); while(scanf("%X",&a)!=EOF) printf(" %02X %d\n",a,a);}