1330: 두 수 비교하기

Jimin·2022년 11월 29일
0

알고리즘

목록 보기
28/71
#include <iostream>
#include <string>

using namespace std;


int main(){
    int a, b;
    cin >> a >> b;
    if(a > b)
        cout << ">";
    else if(a < b)
        cout << "<";
    else
        cout << "==";
    return 0;
}
profile
https://github.com/Dingadung

0개의 댓글