蒟蒻WA
查看原帖
蒟蒻WA
954973
jyz2012楼主2023/5/20 22:47
#include <iostream>
using namespace std;
typedef long long ll;
int main(){
	ll a,b;
	cin>>a>>b;
	if(a==0||b==0)cout<<"Zero"<<endl;
	else if(a>0&&b>0)cout<<"Positive"<<endl;
	else cout<<"Negative"<<endl;
	return 0;
}
2023/5/20 22:47
加载中...