Help me in solving CSB011 problem

My issue

not able to edit or cut already presented lines

Learning course: Learn C#
Problem Link: Rearrange Code Practice Problem in C# - CodeChef

@daiwadnyaaparn
u have to do it like this

using System;

namespace MyApplication
{
    class Program
    {
        static void Main(string[] args)
        {
            Console.Write("Hello");
            Console.WriteLine();
            Console.Write("World");
        }
    }
}