fork(1) download
  1. import java.util.*;
  2. class Main{
  3. public static void main(String[] a){
  4. Scanner sc=new Scanner(System.in);
  5. List<String> lines = new ArrayList<>();
  6. while(sc.hasNextLine()){
  7. String sor=sc.nextLine();
  8. lines.add(sor);
  9. }
  10. System.out.println(lines);
  11. }
  12. }
Success #stdin #stdout 0.06s 2184192KB
stdin
==*====*====
===@===
**@@@==*@@=*@*=
*=*=*=*=*=*=
==*@===*=*@=
stdout
[==*====*====, ===@===, **@@@==*@@=*@*=, *=*=*=*=*=*=, ==*@===*=*@=]