package Gay000;
import java.io.IOException;
public class GayClass00 {
public static void main(String args[]){
System.out.println("Are you a gay? Please use the y or n to answer my question.") ;
byte buffer[ ] = new byte[512];
int count ;
try {count = System.in.read(buffer);
System.out.println("Result:");
for (int i=0;i<count;i++){
System.out.print(buffer+"");
}
System.out.println();
for (int i=0;i<count;i++){
System.out.print((char)buffer);}
} catch (IOException e) {e.printStackTrace();}}
}