1. Add a π node to your graph.
2. Add a Number node and set its value to 5 (representing the radius of a circle).
3. Add a Multiplication node.
4. Connect the `result` output of the π node to the first input of the Multiplication node.
5. Connect the output of the Number node to the second input of the Multiplication node.
6. Add another Multiplication node.
7. Connect the output of the first Multiplication node to both inputs of the second Multiplication node.
8. The output of the second Multiplication node will be the area of the circle (π * radius^2).