#1581. 判断数正负

判断数正负

Description

给定一个整数N,判断其正负。如果N>0,输出positive;如果N=0,输出zero;如果N<0,输出negative

Input Format

一个整数N

Output Format

如果N>0, 输出positive;

如果N=0, 输出zero;

如果N<0, 输出negative。

1
positive

Source

未分类