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