Проблем със задача от judge.
Problem 10. Reformat C# Code
https://judge.softuni.bg/Contests/Practice/Index/122#6
using System;
class HorribleCode
{
static void Main()
{
Console.WriteLine("Hi, I am horribly formatted program");
Console.WriteLine("Numbers and squares:");
for (int i = 0; i < 10; i++)
{
Console.WriteLine(i + " --> " + i * i);
}
}
}
как да изпринтирам този код на екрана? Иска ми да изкарам него на екрана, а не решението на задачата.