using System.Collections.Generic;
using System.Threading.Tasks;
namespace Chapter_9_Solution_2
static void GetMax(int first, int second)
static void Main(string[] args)
Console.Write("Enter first number: ");
a = Int32.Parse(Console.ReadLine());
Console.Write("Enter second number: ");
int b = Int32.Parse(Console.ReadLine());
Console.Write("Enter third number: ");
int c = Int32.Parse(Console.ReadLine());
Console.WriteLine("Biggest number is {0}", a);