Untitled
unknown
c_cpp
2 years ago
246 B
8
Indexable
#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 << "<";
}
}Editor is loading...