mirror of
https://github.com/wczffl-503/OI-Codes.git
synced 2025-05-10 16:20:27 +08:00
21 lines
257 B
C++
21 lines
257 B
C++
#include <iostream>
|
|
#include <iomanip>
|
|
#include <cstring>
|
|
#include <cstdio>
|
|
#include <ctime>
|
|
using namespace std;
|
|
int main(){
|
|
int a;
|
|
cin >>a;
|
|
if(a>0){
|
|
cout <<"positive";
|
|
}
|
|
if(a==0){
|
|
cout <<"zero";
|
|
}
|
|
if(a<0){
|
|
cout <<"negative";
|
|
}
|
|
return 0;
|
|
}
|