MCQ Answers:

1. If it - is 
2. If I - followed 
3. We weather - will be 
4. Don't blame - would have been able to follow  
5. If you drove - would not have 
6. If I had been - wouldn't have accepted  
7. Even if I - had had 
8. It good meeting - wouldn't have been 
9. If it fine tomorrow - is 
10. If I didn't  - wouldn't have been able to forgive 
11. Ranjit - wouldn't not have learnt  
12. I don't have a pen - did 
13. If you tomorrow - go 
14. If he help us - had refused 
15. The country - made 
16. You so tired - wouldn't have been 
17. If madan - worked 
18. If I house - saw 
19. If everybody - agrees 
20. You will be fined - Park 
21. If I had known - would have 
22. If you do this again - will have to 
23. If he didn't - wouldn't have lost 
24. They would have - had got 
25. If I in your position - had been 
26. He coffee - makes 
27. If Jane - had come,would have found  
28. If I rich - were 
29. He wouldn't have started  - didn't ask 
30. If they machines - had used


Program Solution:

# Multiply Multiples with Unit Digit (Id-5643)

x,y=map(int,input().split())
n=int(input())
for i in range(y,x-1,-1):
    if(i%n==0):
        print(i*(i%10),end=" ")

Right Triangle Characters Pattern( Id-5642)


s=input().strip()
i=0
while(s):
    if(len(s)<i):
        print(s[:i]+"*"*(i-len(s)))
    else:
        print(s[:i])
    s=s[i:]
    i+=1