BOJ1000 A+B

가장 기초적인 문제입니다.

//C
#include<stdio.h>

int main(void){
    int a,b;
    scanf("%d%d",&a,&b);
    printf("%d",a+b);
}
#Python
a,b=map(int,input())
print(a+b)
yubin.choi's profile image

최유빈(yubin.choi)

2020-04-22 00:00

Read more posts by this author