当前位置: 代码迷 >> 综合 >> 杭电1720 A+B Coming
  详细解决方案

杭电1720 A+B Coming

热度:12   发布时间:2024-01-18 18:46:28.0

杭电1720 http://acm.hdu.edu.cn/showproblem.php?pid=1720

水题爽一爽。

十六进制的话,直接格式化输入,输出即可。

#include <iostream>
#include <stdio.h>
#include <cstring>
#include <algorithm>
#include <memory.h>
#include <cmath>
#include <stack>
#include <stdlib.h>
#include <set>
//#define DEBUG
using namespace std;
typedef long long ll;
int a,b;
int main() {while(~scanf("%x%x",&a,&b)) {printf("%d\n", a + b);}return 0;
}