desislava777

Equal Words

Oct 21st, 2017
251
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.60 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 ConsoleApplication61
  8. {
  9. class Program
  10. {
  11. static void Main(string[] args)
  12. {
  13. var word1 = Console.ReadLine();
  14. var word2 = Console.ReadLine();
  15. word1 = word1.ToLower();
  16. word2 = word2.ToLower();
  17. if (word1==word2)
  18. {
  19. Console.WriteLine("yes");
  20. }
  21. else
  22. {
  23. Console.WriteLine("no");
  24. }
  25. }
  26. }
  27. }
Advertisement
Add Comment
Please, Sign In to add comment