read nbPlayers:int
read playerId:int
read nbPenguinsPerPlayer:int

gameloop
read nbRows:int
loop nbRows read iceBlockLine:string(8)
loop nbPlayers read playerScore:int
read nbPenguins:int
loop nbPenguins read id:int ownerId:int pos:word(2)
read actionCount:int
loop actionCount read action:string(16)
write MOVE 0 A1 MSG bla bla bla...

STATEMENT
Own more points (fishes and ice blocks) than your opponent!

INPUT
nbPlayers: Number of players
playerId : The id of the player. 0=first player, 1=second player.
nbPenguinsPerPlayer : Number of penguins avalable for each player ( 4 for 2 players, 3 for 3 players, 2 for 4 players)
nbRows: number ice block grid lines
iceBlockGrid: ice block grid.
playerScore: The player's score.
nbPenguins: The number of penguins.
id: The ID of the penguin.
ownerId: The player ID of the penguin.
pos: The position of the penguin.
actionCount: number of legal actions for this turn.
action: the action

OUTPUT
<move Id pos> [MSG Optional message]