cracherhacker5005

import java.util.*;
          
          public class Main {
              public static void main(String[] args) throws Exception {
          
                  Scanner sc = new Scanner(System.in);
          
                  System.out.print("Şifrəni daxil et: ");
                  String pass = sc.nextLine();
          
                  String real = "x7A#91";
          
                  for(int i = 0; i <= 100; i++) {
                      Thread.sleep(40);
                      System.out.println("Sistemə giriş yoxlanılır " + i + "%");
                  }
          
                  if(pass.equals(real)) {
                      System.out.println("ACCESS GRANTED");
                  } else {
                      System.out.println("ACCESS DENIED");
                  }
              }
          }