/*Purpose:This display personal information
Initials & Surname:KK Maseko
Student Number:218013863
Assignment Number:1
*/
using System;
namespace ConsoleApp1
{
public class Program
public static void Main()
//This will display my name is Kenny on the user screen
Console.WriteLine("My name is Kenny");
//This will display my student number on the user screen
Console.WriteLine("My Student number is 218013863");
//This will display my age on the user screen
Console.WriteLine("I am 21 years old");
//This will display the town I live in
Console.WriteLine("I reside at Welkom city");
}//End of Main
}//End of class
}//End of namespace