public static void Main()
Console.WriteLine("How much money do you have?");
int money = int.Parse(Console.ReadLine());
int one = money % 200 / 100;
int fifty = money % 100 / 50;
int ten = money % 50 / 10;
int shekel = money % 10 / 1;
Console.WriteLine("You will get {0} bank notes of 200 shekels,", two);
Console.WriteLine("{0} of 100 shekels,", one);
Console.WriteLine("{0} of 50 shekles, ", fifty);
Console.WriteLine("{0} coins of ten shekels and {1} coins of 1 shekel ", ten, shekel);