Reversing a number

Report a typo

Write a program that reads a three-digit number, reverses the order of its digits, and outputs a new number.

Sample Input 1:

308

Sample Output 1:

803
Write a program in Kotlin
fun main() {
// put your code here
}
___

Create a free account to access the full topic