문제
URL : https://codeup.kr/problemsetsol.php?psid=23
소스코드
// 2개의 정수 입력받아 큰 수 출력하기
// input : 2 5
// output : 5
#include <iostream>
using namespace std;
int main()
{
int n1, n2;
cin >> n1 >> n2;
cout << (n1 >= n2 ? n1 : n2);
return 0;
}
URL : https://codeup.kr/problemsetsol.php?psid=23
// 2개의 정수 입력받아 큰 수 출력하기
// input : 2 5
// output : 5
#include <iostream>
using namespace std;
int main()
{
int n1, n2;
cin >> n1 >> n2;
cout << (n1 >= n2 ? n1 : n2);
return 0;
}