1072

#include <iostream>
using namespace std;
int main(int argc, char** argv) {
	int n,c;
	cin>>n;
	float a,b,x,y;
	string h[n-1];
	cin>>a>>b;
	x=b/a;
	for(int i=0;i<n-1;i++){
		cin>>a>>b;
		y=b/a;
		if(y-x>0.05){
			h[i]="brtter";
			c++;
		}else if(x-y>0.05){
			h[i]="worse";
			c++;
		}else{
			h[i]="same";
			c++;
		}
	}
	for(int i=0;i<c;i++){
		cout<<h[i]<<endl;
	}
	return 0;
}

  

posted @ 2023-02-11 19:25  陈若麟  阅读(130)  评论(0编辑  收藏  举报