algorithm 더블릿|dovelet - 2번째 계단 - 대소 판별하기/compare 블루건 2016. 7. 22. 16:32 문제123456789101112131415161718#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