/*
 * To change this template, choose Tools | Templates
 * and open the template in the editor.
 */

package poo;

import java.util.Scanner;


/**
 *
 * @author felix
 */
public class prueba {
    
    static public void main(String args[]) {
        Scanner a = new Scanner(System.in);
        int clave;
        
        do {
            System.out.println("Ingrese su clave ");
            clave = a.nextInt();
        } while (clave != 1234);
        
        clave = 0;
        
        while (clave != 1234){
            System.out.println("Ingrese su clave ");
            clave = a.nextInt();
        } 
        
        System.out.println("Bienvenido a Banca UMSNH");
    }
}
