当前位置: 代码迷 >> 综合 >> HDU-1720(A+B coming)
  详细解决方案

HDU-1720(A+B coming)

热度:32   发布时间:2023-11-23 12:57:35.0
题目链接:https://vjudge.net/problem/HDU-1720
#include <iostream>
#include <cstdio>using namespace std;int main()
{int a, b;while(scanf("%x%x", &a, &b) != EOF)printf("%d\n", a + b);return 0;
}