ZP4

You might also like

Download as txt, pdf, or txt
Download as txt, pdf, or txt
You are on page 1of 1

REPORT ZP4.

* PARAMETERS : P_X type i value 10.


PARAMETERS : P_X type i default 10, "declaring variable and intialize default
value
P_Y type i DEFAULT 20.
data v_z type i. "declaring value to store sum of two nos

v_z = p_x + p_y. "addition

write : 'SUM OF TWO NOs is',v_z.

You might also like