public class TwoThreadsDemo {
	public static void main (String[] args) {
		Thread t1=new TempThread();
		Thread t2=new PresThread();
		t1.start();
		t2.start();
	}
}
