Advertisement
Blagovest

Reversed chars

Jul 24th, 2016
122
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.48 KB | None | 0 0
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Text;
  5. using System.Threading.Tasks;
  6.  
  7. namespace ExchangeVariableValue
  8. {
  9. class ExchangeVariableValue
  10. {
  11. static void Main(string[] args)
  12. {
  13. string firstL = Console.ReadLine();
  14. string secondL = Console.ReadLine();
  15. string thithL = Console.ReadLine();
  16.  
  17. Console.WriteLine("{0}{1}{2}",thithL,secondL,firstL);
  18. }
  19. }
  20. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement