题面
Governor Weatherby Swann orders you to count the number of coins in the government treasury. To make the job more interesting you decide to say ”Dead” for all numbers that are a multiple of 3 and ”Man” for all numbers that are a multiple of 5. For numbers that are multiples of both 3 and 5 you say ”DeadMan”.
<img src='/upload/2300/2300.jpg'>输入格式
The input will be the number of coins you need to count.
输出格式
The output will be the numbers and words in sequence, separated by spaces. Start a new line after each word.
样例
输入
4 /* 18 */
输出
1 2 Dead 4 /* 1 2 Dead 4 Man Dead 7 8 Dead Man 11 Dead 13 14 DeadMan 16 17 Dead */