본문 바로가기

Algorithm

백준(baekjoon)(BaekJoon)코딩 1000번:A+B 답

반응형
1
2
3
4
5
6
7
8
9
10
#include <iostream>
using namespace std;
int main(){
int A,B;
    0<A;
    B<10;
    cin>>A>>B;
    cout<<A+B;
}
 
cs