Exercise 3.53. Without running the program, describe the elements of the stream defined by (define s (cons-stream 1 (add-streams s s))) ———————————————————————————————————————————————————————————————————————— Each element is twice the previous element. 1, 2, 4, 8, ...