package com.javarush.task.task04.task0420;

/*
Сортировка трех чисел
*/

import java.io.*;
import java.util.*;

public class Solution {
    public static void main(String[] args) throws Exception {
       BufferedReader r = new BufferedReader(new InputStreamReader(System.in));
       int a = Integer.parseInt(r.readLine());
       int b = Integer.parseInt(r.readLine());
       int c = Integer.parseInt(r.readLine());

       if(a