Example: ``` print("hello") print("...") print("World") print("...") ``` into ``` p=print p("hello") p("...") p("World") p("...") ```