String and its Int

Report a typo

Write a program that reads the String representation of an arbitrary number and outputs a line with this number and its Int representation divided by 2.

Look at the example to understand the output format.

Sample Input 1:

12

Sample Output 1:

The obtained value is 12 and its Int representation after division by 2 is 6
Write a program in Kotlin
fun main() {
// write here
}
___

Create a free account to access the full topic