using System;
class Exercise8
{
static int max(int a, int b)
{
return ((a>b) ? a: b);
}
static void Main()
{
string s = Console.ReadLine();
string[] values = s.Split(' ');
int N=int.Parse(values[0]);
int V=int.Parse(values[1]);
int W=int.Parse(values[2]);
int Y=max(max(N,V),W);
Console.WriteLine(Y+" eh o maior");
}
}
No comments:
Post a Comment