string kullaniciAdi = "";
string sifre = "";
do
{
Console.Write("Kullanıcı Adı : ");
kullaniciAdi = Console.ReadLine();
Console.Write("Şifre : ");
sifre = Console.ReadLine();
Console.WriteLine("Hatalı Kullanıcı Adı veya Parola");
} while ((kullaniciAdi != "gorsel") || (sifre != "programlama"));
Console.Clear();
Console.WriteLine("Başarılı Giriş ");
Console.ReadLine();