using System;
public class Program
{
public static void Main()
int tal = 1;
while (tal <= 50) {
Console.WriteLine("Current number is: " + tal);
tal++;
}
Console.WriteLine("Last number is: " + tal);