Problems
312 - Find Small
SUBMIT PROBLEM

Find Small

Time Limit: 1 sec

 

The Problem

Make a simple program that reads three integer numbers A, B and C, find the small number among A, B and C.

 

Example

If A = 100, B = 20 and C = 201 then the small number is 20.

If A = 145, B = 1457 and C = 1040 then the small number is 145.

 

The Input

Input file contain a series of line, each line contain three integer numbers A, B and C (0<A,B,C<=10000). Input is terminated by EOF.

 

The Output

For each line of input, print the small number in a separate line.

 

Sample Input

78 70 87

13 19 78

200 200 100

 

Sample Output

70

13

100

 

 

 

 

Problem Setter: Shahin ShamS