using System;
using System.Drawing;
using System.Windows.Forms;

class SeparateMain
{
        public static void Main()
        {
                Application.Run(new AnotherHelloWorld());
        }
}

class AnotherHelloWorld: Form
{
        public AnotherHelloWorld()
        {
                this.Text = "Another Hello World";
                this.BackColor = Color.White;
        }
        protected override void OnPaint(PaintEventArgs pea)
        {
                Graphics grfx = pea.Graphics;
                grfx.DrawString("Hello, Windows Forms!", this.Font, Brushes.Black, 0, 0);
        }
}