Untitled
unknown
c_cpp
2 years ago
203 B
4
Indexable
#include <iostream>
using namespace std;
int main(){
float a,b;
cin >> a;
cin >> b;
if(a < b){
cout << ">";
}else if(a > b){
cout << "<";
}else cout << "=";
}Editor is loading...