20
1
using System;
2
3
public class Program
4
{
5
public static void Main()
6
{
7
int a = int.Parse(Console.ReadLine());
8
int b = int.Parse(Console.ReadLine());
9
int c = int.Parse(Console.ReadLine());
10
int mayor = -9999999;
11
12
if(a > mayor)
13
mayor = a;
14
if(b > mayor)
15
mayor = b;
16
if(c > mayor)
17
mayor = c;
18
Console.WriteLine("El mayor es: " + mayor);
19
}
20
}
Cached Result