Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- using System;
- namespace ReversedChars
- {
- class Program
- {
- static void Main(string[] args)
- {
- char in1 = char.Parse(Console.ReadLine());
- char in2 = char.Parse(Console.ReadLine());
- char in3 = char.Parse(Console.ReadLine());
- Console.WriteLine($"{in3} {in2} {in1}");
- }
- }
- }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement