Hueestory

[1330] 두 수 비교하기 (C++) 본문

PS(중단)/BOJ

[1330] 두 수 비교하기 (C++)

히명 2024. 4. 25. 10:08
#include <iostream>
#include <algorithm>

using namespace std;

int main()
{
	ios::sync_with_stdio(false);
	cin.tie(NULL);
	cout.tie(NULL);

	int A; cin >> A;
	int B; cin >> B;

	if (A > B)
		cout << ">" << endl;
	else if (A < B)
		cout << "<" << endl;
	else
		cout << "==" << endl;

	return 0;
}

 

 

'PS(중단) > BOJ' 카테고리의 다른 글

[2439] 별 찍기 - 2 (C++)  (0) 2024.04.25
[2438] 별 찍기 - 1 (C++)  (0) 2024.04.25
[1152] 단어의 개수 (C++)  (0) 2024.04.25
[1008] A/B (C++)  (0) 2024.04.25
[1001] A-B (C++)  (0) 2024.04.25
Comments