Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Text;
- using System.Threading.Tasks;
- namespace ConsoleApplication61
- {
- class Program
- {
- static void Main(string[] args)
- {
- var word1 = Console.ReadLine();
- var word2 = Console.ReadLine();
- word1 = word1.ToLower();
- word2 = word2.ToLower();
- if (word1==word2)
- {
- Console.WriteLine("yes");
- }
- else
- {
- Console.WriteLine("no");
- }
- }
- }
- }
Advertisement
Add Comment
Please, Sign In to add comment