WWOJ

1008: 判断数的符号

Time Limit:  1 Sec    Memory Limit:   128 MB
Submission:72     AC:60     Score:100.00


Description

输入一个正整数 repeat (0<repeat<10),做repeat 次下列运算:
输入整数 x,若x 大于0,y=1;若x 等于0,y=0;否则,y=-1,最后输出y。

Input

见sample

Output

见sample

Samples

input:
3 2 -8 0
output:
1 -1 0

Source