import java.util.Scanner; class SimpleInputOutput { public static void main(String[] args) { Scanner in = new Scanner(System.in); int x = in.nextInt(); double y = in.nextDouble(); double sum = x + y; double quotient = x / y; System.out.printf(" Sum of %1d and %4.2f is %5.4f%n", x, y, sum); System.out.printf("Quotient of %1d and %4.2f is %6.4f%n", x, y, quotient); } }