#include <iostream>
#include <thread>
#include <chrono>
using namespace std;
int main() {
int sifre;
cout << "Sifre belirleyiniz." << endl;
cin >> sifre;
cout << "Sifre belirlediniz." << endl;
this_thread::sleep_for(chrono::seconds(4));
system("cls");
int KullaniciSifreDenemesi;
cout << "belirledigin sifreyi gir." << endl;
cin >> KullaniciSifreDenemesi;
if (KullaniciSifreDenemesi == sifre)
cout << "Sifreniz dogru. Girise yonlendiriliyorsunuz..." << endl;
else
cout << "Sifre yanlis. Tekrar deneyin." << endl;
return 0;
}