Untitled
unknown
c_cpp
2 years ago
211 B
7
Indexable
#include <iostream>
using namespace std;
int main(){
int A, B;
cin >> A >> B;
if (A < B)
cout << "<";
else
if (A > B)
cout << ">";
else
if (A = B)
cout << "=";
return 0;
}Editor is loading...