Peter and Vasya are playing a game. They have three piles of stones with sizes $$$n_1$$$, $$$n_2$$$, and $$$n_3$$$ respectively. On each turn, it is allowed to take exactly $$$a_1$$$, $$$a_2$$$, $$$\ldots$$$, $$$a_{k - 1}$$$, or $$$a_k$$$ stones from any one pile. Peter and Vasya take turns to take stones, with Peter starting first. The player who cannot make a move loses. Determine the name of the winner.
The first line contains three integers $$$n_1$$$, $$$n_2$$$, $$$n_3$$$ ($$$0 \leq n_1, n_2, n_3 \leq 100$$$).
The second line contains an integer $$$k$$$ ($$$1 \leq k \leq \max(n_1, n_2, n_3)$$$).
The third line contains $$$k$$$ integers in strictly increasing order: $$$a_1, a_2, \ldots, a_k$$$ ($$$1 \leq a_i \leq \max(n_1, n_2, n_3)$$$).
It is guaranteed that there is at least one move, and any $$$a_i$$$ can be taken on the first move.
Output the name of the winner: Peter or Vasya.
1 1 111
Peter
10 10 1022 3
Vasya