MCQ Answers;

1. If YZW is coded as BAD - EGK 
2. If the value of PICK is 9 - 20
3. If HAPPY is coded as 51223 - 25186
4. HAND is coded as SZMW - NROP 
5. If LUCK is coded as KVBJ - JMJEF
6. DODGE is coded as EQGKJ - QCLRY
7. If a certain code ENGLAND - 381191
8. In a certain code NUMBER - HGSOT
9. If TOM - 70
10. If ACNPXZ- SON
11. ACMP is coded- F
12. CROWD - INVRF
13. SON - FG
14. If BIRD means 7 - 18
15. DAUGHTER - UOYRTNC 



Program solution;

Collect Max Points (Id-5369)

def maxpoint(l,r,c):
    t=[[0 for i in range(c)] for j in range(r)]
    for j in range(c-1,-1,-1):
        for i in range(r):
            if(j==c-1):
                right=0
            else:
                right=t[i][j+1] 
            if(i==0 or j==c-1):
                rightup=0 
            else:
                rightup=t[i-1][j+1] 
            if(i==r-1 or j==c-1):
                rightdown=0 
            else:
                rightdown=t[i+1][j+1]
            t[i][j]=l[i][j]+max(right,rightup,rightdown)
    ans=t[0][0]
    for i in range(1,r):
        ans=max(ans,t[i][0]) 
    return ans
            
r,c=map(int,input().split())
l=[list(map(int,input().split())) for _ in range(r)]
print(maxpoint(l,r,c))