I'm lost on the answer
I can't get an output and I am very confused, everything looks fine to me but it does not work. import java.util.Scanner; public class Main { public static void main(String[] args) { Scanner read = new Scanner(System.in); boolean isSuspended = read.nextBoolean(); int ourScore = read.nextInt(); int theirScore = read.nextInt(); // your code goes here if(isSuspended) { System.out.println("Suspended."); else { if(ourScore < theirScore) { System.out.println ("Lost"); } if(ourScore > theirScore) { System.out.println ("Won"); } if(ourScore == theirScore) { System.out.println("Draw"); } } }