poj-1000 A+B Problem

2019-11-28

1000 努力锻炼编程能力 学习写出完美的代码  🐛  !

#include <stdio.h>
#include <stdlib.h>

int main()
{
    int a,b;
    scanf("%d %d",&a, &b);
    printf("%d\n",a+b);
    return 0;
}

 

posted @ 2019-12-01 18:28  今天你AC了吗  阅读(84)  评论(0编辑  收藏  举报