#include <iostream>
using namespace std;
int main(void)
{
int A = 0;
int B = 0;
cin >> A >> B;
if (A>0 and B<10)
{
cout << A+B << endl;
}
return 0;
}
'Computer Science > 백준 알고리즘' 카테고리의 다른 글
[백준] 2577번 숫자의 개수 (C++) (0) | 2022.03.16 |
---|---|
[백준] 2562번 최대값 (C++) (0) | 2022.03.16 |
[백준] 2557번 Hello World (C++) (0) | 2022.03.16 |
[백준] 2529번 부등호 (파이썬) (0) | 2022.03.16 |
[백준] 2475번 검증수 (파이썬) (0) | 2022.03.16 |