命令在COBOL中等待?

COBOL中是否有一种“等待”功能? 我写了一个计算器,为了使它超过50年代,我打印了“计算”。 “正在计算..” 例如:

                   DISPLAY "SECONDO NUMERO"
                   ACCEPT B
                   COMPUTE C= A * B
                          DISPLAY "Computing"
                          DISPLAY "Computing."
                          DISPLAY "Computing.."
                          DISPLAY "Computing..."
                          DISPLAY "Computing...."
                          DISPLAY "Computing....."
                          DISPLAY "Computing......"
                          DISPLAY A "x" B " FA..."
                          DISPLAY C

现在,有没有办法在我放置“计算”部分的COBOL上稍作延迟(半秒)?谢谢!!!