using System;
public class Program
{
public static void Main()
for (int i = 1; i <= 50; i++)
Console.WriteLine("0" + i);
// Use a for loop to print 0 through 50 on seperate lines
//
// Read the following website to learn about for loop
// https://msdn.microsoft.com/en-us/library/ch45axte.aspx
// Console.WriteLine - writes the string then jumps to the next line
// Console.Write - writes the string on the current line
}