Untitled
#include <iostream> #include <string> using namespace std; int main() { int A; int B; cin >> A >> B; if (A == B) { cout << "="; } else if (A > B) { cout << ">"; } else { cout << "<"; } }
#include <iostream> #include <string> using namespace std; int main() { int A; int B; cin >> A >> B; if (A == B) { cout << "="; } else if (A > B) { cout << ">"; } else { cout << "<"; } }