Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- using System;
- class EqualPairs
- {
- static void Main(string[] args)
- {
- string firstWord = Console.ReadLine().ToLower();
- string secondWord = Console.ReadLine().ToLower();
- if (firstWord == secondWord)
- {
- Console.WriteLine("yes");
- }
- else
- {
- Console.WriteLine("no");
- }
- }
- }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement