package week12day3;

public class AlarmDriver {
	public static void main(String[] args){
		Student s = new Student();
		try{
			s.sleep();
		}catch(Exception e){
			System.out.println(e.getMessage());
			e.printStackTrace(System.err);
		}finally{
			s.wakeup();
		}
		System.out.println("Still awake!");
	}
}
