mirror of
https://github.com/wczffl-503/OI-Codes.git
synced 2025-05-11 00:30:27 +08:00
17 lines
189 B
C++
17 lines
189 B
C++
#include <bits/stdc++.h>
|
|
using namespace std;
|
|
int main(){
|
|
int a;
|
|
cin >>a;
|
|
if(a<0){
|
|
cout <<"negative";
|
|
}
|
|
if(a==0){
|
|
cout <<"zero";
|
|
}
|
|
if(a>0){
|
|
cout <<"positive";
|
|
}
|
|
return 0;
|
|
}
|