using System.Collections.Generic;
namespace GoogleKnigthDialer
static (char source, char destination)[] moves = {
static void Main(string[] args)
var unsymmetrical = moves.Where(w => !moves.Where(wi => wi.destination == w.source && wi.source == w.destination).Any());
Console.WriteLine("Incorrect input");
var variantsCounts = new List<(char digit, long count)>();
variantsCounts.Add((original, 1));
for (int i = 0; i < N; i++)
var nextRoundUngrouped = variantsCounts
.Join(moves, phone => phone.digit, move => move.source, (phone, move) => (digit: move.destination, count: phone.count)).ToArray();
var nextRoundGrouped = nextRoundUngrouped.GroupBy(g => g.digit).Select(s => (digit: s.Key, count: s.Sum(v=>v.count))).ToList();
variantsCounts = nextRoundGrouped;
var sum = variantsCounts.Sum(s => s.count);
Console.WriteLine($"Number of phones: {sum}");