import javax.swing.JFrame;
public class evehand {
	public static void main(String args[]){
	evehand1 eve = new evehand1();
	eve.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
	eve.setSize(350,100);
	eve.setVisible(true);
	}
}