/******************************************************************************
Online C# Compiler.
Code, Compile, Run and Debug C# program online.
Write your code in this editor and press "Run" button to execute it.
*******************************************************************************/
using System;
class HelloWorld {
static void Main() {
Console.Write("Please enter a n1: ");
int n1 = int.Parse(Console.ReadLine());
Console.Write("Please enter a n2: ");
int n2 = int.Parse(Console.ReadLine());
Console.Write("Please enter a n3: ");
int n3 = int.Parse(Console.ReadLine());
Console.Write("Please enter a n4: ");
int n4 = int.Parse(Console.ReadLine());
//ØÙ„1
//int max = Math.Max(n1, n2);
//max = Math.Max(n3,max);
//max = Math.Max(n4, max);
//ØÙ„2
int max = Math.Max( Math.Max(n1, n2), Math.Max(n3, n4));
Console.WriteLine("max numer is: " + max);
}
}