There are multiple test cases in this problem.
For every test case, The first line has 3 interger, $Z,X,Y(1 \leq Z,X,Y \leq 10^2)$
Then following $Z\times X$ lines each line contains $Y$ characters, the character in $i$'th row (start from 0), $j$'th column is $(z=\lfloor i/X \rfloor+1,x=i\%X+1, y=j)$
'.' represents open space, '*' represents a user, '@' represents a delivery station.
The input guarantees that there is at least one '.' and at least one '@'. $\sum{Z\times X \times Y}\leq 6 \times 10^6$