Untitled

Anonymous
c_cpp
10/12/2023 5:38 PM
272 B
10
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...