Algorithm: 1. Start with N=0, 2. Start with SUM=0, 3. Add 1 to N 4. Add N to SUM 5. If N=10 then print SUM, if not, go to 3 6. End The following should give you an idea of how your flow chart should look: N=0 ↓ SUM=0 ↓ Add 1 to N ← ← ↓ ↑ Add N to SUM ↑ ↓ ↑ N=10? → NO → <--This is a decision, so ↓ enclose in diamond shape, YES others in rectangles ↓ Print SUM ↓ End Here's the program in LibertyBasic. You may have to translate it into whatever language you are using: N=0 SUM=0 1 N=N+1 SUM=SUM+N if N=10 then print SUM else 1 end Edwin