saudshreesha saudshreesha 28-09-2022 Computers and Technology Answered Write down the output of the given program. Show with dry run in table. DECLARE SUB SHOW (A) CLS N= 87 CALL SHOW (N) END SUB SHOW (A) DO B = A MOD6 + 3 IF B MOD 4 = 0 THEN GOTO AA PRINT B; AA: A=A-10 LOOP WHILE A>=50 END SUB