Concatenate the strings seperated by gaps and then print the variable into which the strings get concatenated.
Data: V1(100) TYPE c.
Concatenate 'The value of First_One is:' First_One 'and the value of Second_One is:' Second_One '.' into V1 SEPARATED BY SPACE.
WRITE: / V1.
The output will be
The value of First_One is: Value1 and the value of Second_One is: Value2 .