What is the value of s after executing the following lines of Python?
s
m = "PYTHON" t = "BLABBER" r = "OK" v = t[0] + r[0] * 2 + r[-1] * 2 p = t[-2] * 2 + m[0] + t[5:] s = v + p