END Write down the output of the given program. Show with dry run in a table.
REM To display the output
CLS
a=0
x = 0
WHILE a<20
IF a MOD 5=0
x=x+a
PRINT x;
ENDIF
a=a+1
WEND
END​