문제 : https://www.acmicpc.net/problem/1330 풀이과정 if-else 이용 전체코드(C++14) #include using namespace std; int main() { int a, b; cin >> a >> b; if (a > b) cout
최근댓글