| 1 | import java.util.Scanner; |
| 2 | |
| 3 | public class Main { |
| 4 | public static void main(String[] args) { |
| 5 | System.out.println("Hello world!"); |
| 6 | Scanner sc = new Scanner(System.in); |
| 7 | String p = sc.next(); |
| 8 | int q = sc.nextInt(); |
| 9 | System.out.print(p + " " + q); |
| 10 | |
| 11 | } |
| 12 | } |
nothing calls this directly
no outgoing calls
no test coverage detected