using System;
public class Program
{
public static void Main()
// Вводится три числа. Вывести максимальное.
//Пример ввода:
//3
//5
//7
//Пример вывода: 7
Console.WriteLine("Введите Три числа.");
int a = Convert.ToInt32(Console.ReadLine());
int b = Convert.ToInt32(Console.ReadLine());
int c = int.Parse(Console.ReadLine());
int max = 0;
if (a >= b)
max = a;
}
else
max = b;
if (max <= c)
max = c;
Console.WriteLine(max);