除hello world之外另一开天辟地级的题目
三年没有写代码,上手还是C++
受到某位同是中文系出身的“俺寻思”大神感召,决定捡一捡高中时代的竞赛基础
复健找手感,纯粹为情怀
纪念一下逝去的青春……
#include <cstdio>
#include <iostream>
using namespace std;
int main(){
int a,b;
scanf("%d %d",&a,&b);
int ans = a + b;
printf("%d", ans);
return 0;
}