Problem2191--Recursive void function

2191: Recursive void function

Time Limit: 1 Sec  Memory Limit: 128 MB
Submit: 0  Solved: 0
[Submit] [Status] [Web Board] [Creator:]

Description

This problem requires writing a recursive void function that has one parameter which is a positive integer. When called, the function is to write its arguments to the screen backward.

Input

Given an integer.

Output

Reverse output parameter.

Sample Input Copy

1234

Sample Output Copy

4321

Source/Category

26