Python 3, 61 bytes
lambda n,m:sum(randint(1,m)for i in[0]*n)
from random import*
Try it online!
This is not an interesting answer as it is just a copy of your code. I tried to do it with ch...
Python 2, 61 bytes
i=12;exec"print'YWUSQOMKIGECABDFHJLNPRTVXZ'[i:14+i];i-=1;"*13
Try it online!
I tried to do it without writing the full list 'YWUSQOMKIGECABDFHJLNPRTVXZ' but couldn't get l...