7bfad12e6a
#KT-35476 fixed
11 lines
169 B
Kotlin
Vendored
11 lines
169 B
Kotlin
Vendored
object J {
|
|
@JvmStatic
|
|
fun main(args: Array<String>) {
|
|
val a = 0
|
|
val b = 1
|
|
var c = 2
|
|
c = c xor (a and b)
|
|
print(c)
|
|
}
|
|
}
|