algorithm

더블릿|dovelet - 2번째 계단 - 대소 판별하기/compare

블루건 2016. 7. 22. 16:32

문제


1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
#include <iostream>
 
using namespace std;
 
int main()
{
    int x, y;
    cin >> x >> y;
 
    if (x > y)
        cout << ">";
    else if (x < y)
        cout << "<";
    else
        cout << "=";
    
    return 0;
}
cs