import java.util.Scanner;
public class EboyIsCool
{
public static void main(String[] args)
{
Scanner scan = new Scanner(System.in);
System.out.print("is eboy cool? ");
String cool = scan.next();
if(cool == "yes")
{
System.out.println("\nyep he sure is");
}
if(cool == "no")
{
System.out.println("\nincorrect answer");
}
}
}
look guys i know how to code