You are attempting to assign an integer variable to a long variable, but Kotlin compiler flags it as an error. Why?
There is no implicit conversion from Int to Long
Int
Long
All integers in Kotlin are of type Long
You can only assign Long to an Int, not the other way around
You must wrap all implicit conversion in a try/catch block