val n1: Int? = 42val exists1 = n1 != null//exists1 is Trueval n2: Int? = nullval exists2 = n2 != null//exists2 is Falseprintln("exists1 is $exists1")println("exists2 is $exists2")