Where am I going wrong please?
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(); if(isSuspended == True){ System.out.println("Suspended"); } if(isSuspended == False){ if (ourScore == theirScore) System.out.println("Draw"); } else { if (ourScore > theirScore) System.out.println("Won"); } else { if (ourScore < theirScore) System.out.println("Lost"); } } } }