0
Print this taking input as 4
0 1 1 2 3 5 8 13 21 34
2 Respuestas
+ 1
to print that you need to write:
System.out.println ("0");
System.out.println ("1 1");
System.out.println ("2 3 5");
System.out.println ("8 13 21 34");
OUTPUT:
0
1 1
2 3 5
8 13 21 34
(END)