Compare Latin letters

Report a typo

Write a program that reads two Latin letters as characters and compares them ignoring cases. If these characters represent the same letter print true , otherwise false.

Sample Input 1:

a
b

Sample Output 1:

false

Sample Input 2:

d
D

Sample Output 2:

true
Write a program in Kotlin
fun main() {
// write your code here
}
___

Create a free account to access the full topic