/*
* To change this template, choose Tools | Templates
* and open the template in the editor.
*/
package main.console.IOStream;
/**
*
* @author vara
*/
public class JavaConsole extends IOStream{
public JavaConsole(){
super(System.in,System.out);
}
}