You are on page 1of 1

//return of comparator

#include<iostream>
using namespace std;
int main(){
int x = (100==200);
int y = (200>=200);
cout<<" x = "<<x<<" y = "<<y<<endl;
return 0;
}

You might also like