#include<bits/stdc++.h>
using namespace std;
class rectangle{
private:
int length,width;
public:
void set(int x,int y){
length=x;
width=y;
}
int getlength(){
return length;
}
int getwidth(){
return width;
}
int area(){
return length*width;
}
void compare(rectangle a){
// write your code here......
/*因为先初始化了两个变量,若想利用一个变量引用方法,
其方法中的参数是另一个变量的话,
需要考虑局部变量和全局变量在方法中的使用,
可以选择this关键字访问当前对象。
*/
if(this->area()>a.area())
{
cout<<"1"<<endl;
}else
{
cout<<"0"<<endl;
}
}
};
int main(){
int l1,w1,l2,w2;
cin>>l1>>w1>>l2>>w2;
rectangle a,b;
a.set(l1,w1);
b.set(l2,w2);
a.compare(b);
return 0;
}