namespace ConsoleAppLab5Q1
public static void Main(string[] args)
Console.Write("Enter amount of money to withdraw: ");
money = Convert.ToInt32(Console.ReadLine());
Console.WriteLine("Exceed max withdrawal limit.");
Console.WriteLine("You want to withdraw {0} Baht.", money);
else if ((money > 0) && (money < 100))
Console.WriteLine("This has only 100 banknotes.");
Console.WriteLine("Money must be more than 0.");