Draw a Flowchart and a Trace Table for a program that calculates the summation based on a loop of additions (no built-in 'sum( )' function), given a starting point at 1 and a stopping point provided by the user. If you were to write the program in python, your IDE console should look like the figure below:
Note: Summation of 3 is 1+2+3=6

Summation2
C:\Python32\python.exe C:/Users/nmendoza/PycharmProjects/Summation2
Tell me when to stop summation:3
Summation= 6

Process finished with exit code 0