Simple Task (Functions)
Very easy
Execution time limit is 1 second
Runtime memory usage limit is 64 megabytes
You are tasked with implementing a procedure:
void solve(int n) // C++
procedure solve(number: integer); // Pascal
def solve(number): # Python
This procedure takes a two-digit number as input and outputs its digits separately, with a space between them.
For instance, if the input number is 23, the procedure should output 2 3
.
Examples
Input #1
Answer #1
Submissions 2K
Acceptance rate 32%