Advertisement
viraco4a

01. Debit Card Number

May 22nd, 2018
776
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.41 KB | None | 0 0
  1. using System;
  2.  
  3. namespace Greeting
  4. {
  5. class Program
  6. {
  7. static void Main()
  8. {
  9. int one = int.Parse(Console.ReadLine());
  10. int two = int.Parse(Console.ReadLine());
  11. int three = int.Parse(Console.ReadLine());
  12. int four = int.Parse(Console.ReadLine());
  13.  
  14. Console.WriteLine($"{one:d4} {two:d4} {three:d4} {four:d4}");
  15. }
  16. }
  17. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement