import java.awt.*;
import java.awt.event*;
public class TwoListen implements
MouseMotionLister,mouseListener{
private Frame f;
private TextField tf;
public static void main(String args[]){
TwoListen two=new TwoListen();
Two.go();
}
public static void main(String args[]){
f=new Frame("Two listener example");
f.add(new Label("Click and drag the mouse"),"North");
tf=new TextField(30);
f.add(tf,"South");
f.addMouseMotionLister(this);
f.addMo