After you have the numbers - you can put them in an array (first make sure you have this line in the beginning of the code: using System.Linq;) - and then to use one of the functions of the array - .Min (or in this case .Max) - easy and very useful!
The code:
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
class Task
{
static void Main()
{
decimal a = decimal.Parse(Console.ReadLine());
decimal b = decimal.Parse(Console.ReadLine());
decimal c = decimal.Parse(Console.ReadLine());
decimal[] arrayNumbers = { a, b, c };
decimal arrayNumbersBiggest = arrayNumbers.Max();
Console.WriteLine(arrayNumbersBiggest);
}
}