提交时间:2024-01-23 16:21:29
运行 ID: 125045
#include<bits/stdc++.h> using namespace std; int main() { int p,s; cin>>p; if(p>0){ cout<<"yes"<<endl; cout<<p<<">0"; } else{ cout<<"no"<<endl; if (p!=0){ cout<<p<<"<0"; }else{cout<<p<<"=0"; } } }