Kotlin - Data Types
What will be the output of this Kotlin code?
val a: Int = 100000
val b: Long = 10000000000L
val c: Float = 3.14f
val d: Double = 3.1415926535
println("$a $b $c $d")
