using System;
public class Program
{
public static void Main()
//while loop - use for loop that you do not know how time it has to repeat
int i =1;
while(i <= 5){
Console.WriteLine(i);
i++;
}
//for loop - how many times you will repat the code
Console.WriteLine("FOR LOOP");
for(int x = 1; x <= 5;x++){
Console.WriteLine(x);