Description

Contest

Arrays & Sorting

Letter

C

About

SPLIT

C. РАЗДЕЛЯНЕ
---
Въвеждаме целочислен едномерен масив. Съставете и изведете два сортирани масива съдържащи четните и нечетните числа на първия.

Примерен вход:
9 8 7 6 5 4 3 2 1

Примерен изход:
1 3 5 7 9
2 4 6 8

C. SPLIT
---
We introduce an integer one-dimensional array. Compose and output two sorted arrays containing the even and odd numbers of the first one.

Example Input:
9 8 7 6 5 4 3 2 1

Example Output:
1 3 5 7 9
2 4 6 8

Problems Submit