Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- using System;
- namespace Problem25
- {
- class Program
- {
- static void Main(string[] args)
- {
- string[] tab = Console.ReadLine().Split(' ');
- for (int i = tab.Length - 1; i >= 0; i--)
- {
- Console.WriteLine(tab[i] + " ");
- }
- }
- }
- }
Advertisement
Add Comment
Please, Sign In to add comment