using System;
public class Program
{
public static void Main()
Console.WriteLine("Enter Password.");
string PS =Console.ReadLine();
Console.WriteLine("Enter Username.");
string US =Console.ReadLine();
//what you will see when done
Console.WriteLine("Welcome " + US + " your password is " + PS);
}