//ako si John michael Julien Sabellina
//ako si Mark hospeh Junco
using System;
public class Program
{
public static void Main()
String Sent;
Console.WriteLine("Enter a Sentence");
Sent = Console.ReadLine();
String [] Rev = Sent.Split(' ');
for(int x=Rev.Length-1; x>=0; x--)
Console.Write(Rev[x] + " ");
}
Console.WriteLine();