A customer received the following SMS:
Avl Bal for A/c XXXX3507 as on 01-AUG-2021 06:11:48 is INR 1446.28. Combined Avl Bal is INR 1446.28. Use MB App to track A/c-Kotak Bank
Write a Print Statement to generate the above SMS. (You may refer to the example given at the top.)
using System;
using System.Collections.Generic;
using System.Globalization;
namespace App
{
class Program
{
static void Main(string[] args)
{
Console.WriteLine("Avl Bal for A/c XXXX3507 as on 01-AUG-2021 06:11:48 is INR 1446.28. Combined Avl Bal is INR 1446.28. Use MB App to track A/c-Kotak Bank");
Console.ReadLine();
}
}
}
Comments
Leave a comment