Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- //Task 011, Chapter 3.0
- using System;
- public class EqualWords
- {
- static void Main()
- {
- 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