
public class Quiz5 {
	public static void main(String[] args) {
		Thread thread = new Thread(new Runnable() {
			public void run() {
				try {	
					while (true) {
						Thread.sleep(60000);
						System.out.println("Running");
					}
				} catch (InterruptedException e) {
					System.out.println("Finishing");
				}
			}
		});
		thread.start();
		
		try {
			Thread.sleep(300000);
		} catch (InterruptedException e) {
			e.printStackTrace();
		}
		thread.interrupt();
	}
}

