Concept Flow - Increment and decrement
Start with variable x
Apply increment x = x + 1
Apply decrement x = x - 1
Use or print x
End
This flow shows starting with a variable, then increasing or decreasing its value by 1, and finally using the updated value.