← Back to List

1330번: 두 수 비교하기 ↗

Solutions

C++14
139 B | 139 chars
#include <iostream>
using namespace std;
int A,B;
int main()
{
	cin>>A>>B;
	if(A>B) cout<<">";
	else if(A<B) cout<<"<";
	else cout<<"==";
}