The second algorithm block declares a real variable c. It then reads a value into c (which is 4.0, as seen from the input side). After that, it calculates c as c * 2, and finally outputs the value of c.
The calculation will be 4.0 * 2 = 8.0.
Output: 8.0