Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- using System;
- namespace _02.Password
- {
- internal class Program
- {
- static void Main(string[] args)
- {
- string potrIme = Console.ReadLine();
- string passWord = Console.ReadLine();
- string inputT = Console.ReadLine();
- while (inputT != passWord)
- {
- inputT = Console.ReadLine();
- }
- Console.WriteLine($"Welcome {potrIme}!");
- }
- }
- }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement