OJ-Problems-Source/HDOJ/1720_autoAC.cpp
2016-08-17 15:12:28 +08:00

11 lines
163 B
C++

#include <stdio.h>
#include <stdlib.h>
int main()
{
int a,b;
while(scanf("%x%x",&a,&b)!=EOF){
printf("%d\n",a+b);
}
return 0;
}