Java Program to Create Two Threads which will display two different messages

Write a Write a Java program to create two threads such that one thread displays the message "How do you do ?" and the other thread displays the message "Fine, Thank you!"..



Source Code
public class MyThread extends Thread {

	String msg;
	public MyThread(String msg) {
		
		this.msg = msg;
		start();
	}
	
	public void run() {
		System.out.println(msg);
	}
	
	public static void main(String[] args) {
		
		MyThread t1 = new MyThread("How do you do ?");
		MyThread t2 = new MyThread("Fine, Thank you!");
	}
}
Output
How do you do ?
Fine, Thank you!