题目描述
You are given a sequence $A = (A_1, A_2, \dots, A_N)$ of length $N$.
You perform the following operation exactly $K$ times:
- remove the initial element of $A$ and append a $0$ to the tail of $A$.
Print all the elements of $A$ after the operations.
提示
***For Sample #1:***
Before the operations, $A = (2, 7, 8)$.
After performing the operation once, $A = (7, 8, 0)$.
After performing the operation twice, $A = (8, 0, 0)$.
Thus, $(8, 0, 0)$ is the answer.