Problem2167--Sorting of two values

2167: Sorting of two values

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

Description

Assume variables first and second are declared to be double and are initialized. Write a sequence of lines of code that cause the values stored in first and second to be exchanged if the value of first is not less than second.

Input

Given two different numbers of double type, i.e. first and second

Output

Orderly arrangement of first and second

Sample Input Copy

4 1

Sample Output Copy

1 4

Source/Category

5