9 cards are placed face down into a 3 by 3 square. Every card has a unique number. Two Players take turns to flip cards, the one gets the higher card win.
Given a table of how these cards are distributed, and which card the first player picked. Please write a C program to tell the first player’s win rate
Hint: win rate = (how many cards smaller than the first card number) / (9 – 1)
Note:
A map with all nine cards are placed, and two integers X, Y that represents which card the first player picked.

Output should follow below format:
R
Note that: