Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- using System;
- namespace _01.Debit_Card_Number
- {
- class Program
- {
- static void Main(string[] args)
- {
- int a = int.Parse(Console.ReadLine());
- int b = int.Parse(Console.ReadLine());
- int c = int.Parse(Console.ReadLine());
- int d = int.Parse(Console.ReadLine());
- Console.Write($"{a:d4}");
- Console.Write($" ");
- Console.Write($"{b:d4}");
- Console.Write($" ");
- Console.Write($"{c:d4}");
- Console.Write($" ");
- Console.Write($"{d:d4}");
- Console.Write($" ");
- }
- }
- }
Advertisement
Add Comment
Please, Sign In to add comment