Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- using System;
- namespace Best_Player
- {
- class Program
- {
- static void Main(string[] args)
- {
- string tournamentName = Console.ReadLine();
- int countMatches = int.Parse(Console.ReadLine());
- while (true)
- {
- string line = Console.ReadLine();
- if (line == "End of tournaments")
- {
- break;
- }
- for (int i = 0; i < countMatches; i++)
- {
- int myTeam = int.Parse(Console.ReadLine());
- int enemyTeam = int.Parse(Console.ReadLine());
- }
- }
- }
- }
- }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement