Find a suitable input

Report a typo

Take a look at the program below:

import java.util.Scanner

fun main(args: Array<String>) {
    val scanner = Scanner(System.`in`)

    val a = scanner.nextInt()
    val b = scanner.nextInt()
    val c = scanner.nextInt()

    val result = a >= b && b != c

    println(result)
}

Select the input that leads to true:

Select one option from the list
___

Create a free account to access the full topic