You are viewing a single comment's thread. Return to all comments →
Java
public static void main(String[] args) { Scanner sc = new Scanner(System.in); String str = sc.nextLine(); System.out.println("Hello, World."); System.out.println(str); }
Day 0: Hello, World.
You are viewing a single comment's thread. Return to all comments →
Java