3379: 比大小
Memory Limit:128 MB
Time Limit:1.000 S
Judge Style:Text Compare
Creator:
Submit:7
Solved:4
Description
有一个含有10个正整数的数列,还有一个x。如果大于且等于x,则正常输出,否则输出0。
Input
一共两行:
第一行,10个正整数ai,范围为$(1 \leq ai \leq 1000)$
第二行,一个正整数x,范围为$(1 \leq x \leq 1000)$
第一行,10个正整数ai,范围为$(1 \leq ai \leq 1000)$
第二行,一个正整数x,范围为$(1 \leq x \leq 1000)$
Output
一共一行,10个处理完的数字,中间用空格隔开
Sample Input Copy
2 3 1 4 5 7 8 9 6 2
5
Sample Output Copy
0 0 0 0 5 7 8 9 6 0