Algo++ : print LCS

I am getting wrong answer for 1 test case please help code link : https://ide.codingblocks.com/s/107384

hey @amandahiya.3572, do not use continue. Moreover if m=size of s1 and n=size of s2, you shoul make dp of size mXn, not nXm.
Here is a updated code https://ide.codingblocks.com/s/107392