234 - Split Number
Split Number
Time Limit: 1 sec
The Problem
The problem is very simple just read a 4 digits integer number N and print first 2 digits in first line and last 2 digits in second line.
Example:
N = 4563
Print 45 in first line
Print 63 in second line
The Input
The input file contains one integer number N( 1000< N<9999).
The Output
Output will show the first two digits in first line and last two digits in second line.
Sample Input
4563
Sample Output
45
63
Problem Setter: Shahin ShamS