Write a program that input two-digit number, then prints the number with its digits reversed.
Example input:
54
Example output:
45
Hidden content!#include * * * * * *int main(){* ** * * ** ** * * num, temp, remainder, reverse = 0;