poj_1000 A+B Problem 模拟

来源:互联网 发布:直播讲课哪个软件 编辑:程序博客网 时间:2024/04/27 14:33

今天开启算法练习之旅,一直坚持直到大学毕业,请大家多多指教。

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


1 0