import java.io.*;

public class SerialPort {
	SerialPort(String s, int sp){
	}

	public void open() { }
	public void read(byte[] buf, int h) throws java.io.IOException {
		System.in.read(buf, 0, h);
	}
	public void write(byte[] buf, int h){ }
}