Untitled
Anonymous
c_cpp
10/12/2023 5:35 PM
328 B
19
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...