Add the 3 numbers and display the sum by using pseudocode

1 answer

START

Declare three variables, A, B, and C

Set A = 5
Set B = 10
Set C = 15

Calculate the sum of A, B, and C
Set SUM = A + B + C

Display SUM

END