// // Read three numbers and sort to ascending order // import java.util.*; public class ScendThree { public static void main(String[] args) { Scanner input = new Scanner(System.in); int a, b, c; System.out.print("Three integers: "); a = input.nextInt(); b = input.nextInt(); c = input.nextInt(); if(a