Create a simple utility app, which will keep score of a card game called "Marias". The game will ask how many player will play and the name of each player.
However, only three of the total number of players play in each round, the others are idle.
In each round, three players play, one player wins amount A1 and two players lose amount A2 and A3.
It is given that: A1 = (-1) * (A2 + A3) and A2 = A3
After each round, the winning amount will be added to the winners amount. The two loser's negative amount will be calculated and subtracted from their amount. The utility will keep score of the overall debt, a sum of all rounds.
The graphic layout will show columns for all players, the name of each column will be the name of each player (defined in the beginning) , the amount won / lost in each game, and the sum in each column.