public class TroisiemeProgramme {
	public static void main(String[] args) throws InterruptedException {
		Ampoule amp = new Ampoule();
		amp.allumer();
		Thread.sleep(2000);
		amp.eteindre();
	}
}
