└── sol1.txt /sol1.txt: -------------------------------------------------------------------------------- 1 | import java.util.*; 2 | 3 | public class Solution { 4 | 5 | public static void main(String[] args) { 6 | Scanner scan = new Scanner(System.in); 7 | int a = scan.nextInt(); 8 | // Complete this line 9 | int b = scan.nextInt(); 10 | // Complete this line 11 | int c = scan.nextInt(); 12 | 13 | System.out.println(a); 14 | // Complete this line 15 | System.out.println(b); 16 | // Complete this line 17 | System.out.println(c); 18 | } 19 | } --------------------------------------------------------------------------------