[TIOJ] 1002. A+B Problem

題目連結:http://tioj.infor.org/problems/1002
基礎水題,學習基本io,用cin+cout或scanf+printf都可,我還是用習慣用的scanf+printf做
#include <stdio.h>

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

留言

這個網誌中的熱門文章

[TIOJ] 1094. C.幼稚國王的獎賞

[IOJ] 19. 啦啦啦

[IOJ] 14. 費氏數列問題