package chapter1.sleepers; public class Sleeper1 { public static void main(String[] args) throws InterruptedException { System.out.println("sleep"); Thread.sleep(1000); System.out.println("wake up"); } }