Untitled
Anonymous
c_cpp
10/12/2023 5:57 PM
284 B
16
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...