using System;

namespace MyCompiler {
    class Program {
        public static void Main(string[] args) {
            Console.WriteLine("HI");
            {
               Console.WriteLine(Math.Max(5,10)); 
                {
                    Console.WriteLine(Math.Sqrt(64));
                    {
                        Console.WriteLine(Math.Log(9));
                        {
                            Console.WriteLine(Math.Pow(3,3));
                            {
                                Console.WriteLine(Math.Max(10,2));
                                {
                                    Console.WriteLine(Math.Min(13,9));
                                    {
                                        Console.WriteLine(Math.Pow(4,4));
                                    }
                                }
                            }
                        }
                    }
               }
            }
        }
    }
    }

Embed on website

To embed this project on your website, copy the following code and paste it into your website's HTML: