Problem1089--数组-5的倍数

1089: 数组-5的倍数

Time Limit: 1 Sec  Memory Limit: 128 MB
Submit: 109  Solved: 79
[Status] [Submit] [Creator:]

Description

给你10个数。请你按顺序输出 每个数,但是 5 的倍数得用 "bingo" 代替。

Input

10个数(10000以内的正整数)

Output

不是5的倍数的数正常输出
是5的倍数用bingo代替输出

Sample Input Copy

5 23 10 38 1 4 15 27 9 28

Sample Output Copy

bingo 23 bingo 38 1 4 bingo 27 9 28

Source/Category

 入门