第一次使用Markdown
很早的时候就想学习一下怎么用markdown来写博客,但是真的是时(非)间(常)有(懒)限(惰),所以一直这个事情就搁置了下来,这次一个晚上入个门也算是吃惊吧。
那就写一个简单的 a+b 的问题作为一个新的开始吧。
#include <iostream>
#include <cstdio>
#include <cstring>
#include <algorithm>
using namespace std;
int main(){
int a,b;
while(scanf("%d%d",&a,&b)!=EOF){
printf("ans = %d\n",a+b);
}
return 0;
}