十六进制加法

#include<stdio.h>
int main()
{
    int a,b;
    while(scanf("%x%x",&a,&b)!=EOF)
    {
        printf("%d\n",a+b);
    }
    return 0;
}
posted @ 2013-10-14 19:11  清风旋叶  阅读(309)  评论(0)    收藏  举报