Untitled
Anonymous
c_cpp
10/27/2023 4:02 PM
392 B
20
Indexable
#include <iostream>
#include <cmath>
#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;
}Editor is loading...