PROGRAM FOR SIMPLE PERFORM:
We have to write a program to elaborate simple PERFORM statement
Identification division.
Program- id. Perf1.
Environment division.
Data division.
Procedure division.
Para-1.
Display(1 1) erase.
Display "ABC".
Perform para-2.
Display "XYZ".
Stop run.
Para-2.
Display "DEF".
Description: The output of the program will be ABC
DEF
XYZ