public static void Main()
for(int I = 1; I < 6; I++){
Console.Write("Employe number: ");
int e = Convert.ToInt32(Console.ReadLine());
Console.Write("\nIntroduce your daily salary: ");
int s = Convert.ToInt32(Console.ReadLine());
Console.Write("\nHow many hours did you work: ");
int h = Convert.ToInt32(Console.ReadLine());
Console.Write("\nThe total to pay is: {0}", r);