Advertisement
spasnikolov131

Untitled

Sep 24th, 2021
29
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.52 KB | None | 0 0
  1. using System;
  2.  
  3. namespace From_Left_to_the_Right
  4. {
  5. class Program
  6. {
  7. static void Main(string[] args)
  8. {
  9. int input = int.Parse(Console.ReadLine());
  10.  
  11.  
  12. for (int i = 0; i <= input; i++)
  13. {
  14. string leftNumber = Console.ReadLine();
  15.  
  16. for (int j = 0; j <= input; j++)
  17. {
  18. string rightNumber = Console.ReadLine();
  19. }
  20. }
  21.  
  22.  
  23.  
  24.  
  25. }
  26. }
  27. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement