.
package com.javarush.task.pro.task04.task0409;
import java.util.Scanner;
/*
Минимум из введенных чисел
*/
public class Solution {
public static void main(String[] args) {
Scanner con = new Scanner(System.in);
int min = Integer.MAX_VALUE;
while (con.hasNextInt()){
if (con.nextInt() < min)
min = con.nextInt();
}
System.out.println(min);
}
}