using System;

namespace app19
{
    class app19
    {
        static void Main(string[]args)
        {
            int i =0;
            while(i<2)
            {
                Console.WriteLine("Hello World");
                i++;
            }
            int j = 0;
            while(j<2)
            {
                Console.WriteLine("Anup Kumar Tirkey is a Cloud Architect.");
                j++;
            }
        }
    }
}

Embed on website

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