Given the following Bayes net:

with
- $p(k=t)=.2$
- $p(o=t)=.1$
- $p(s=t|k=f,o=f)=.0$
- $p(s=t|k=f,o=t)=.2$
- $p(s=t|k=t,o=f)=.5$
- $p(s=t|k=t,o=t)=.95$
how would I calculate $p(o=t|k=t)$?
Intuitively I'd say it must be $0.1$, but if I calculate this as a sum of basic probabilities: i.e. $p(s=t|o=t)=p(s=t,o=t,k=f)+p(s=t,o=t,k=t)$ the result is different.
This video also explains that it should be $0.1$, but the question explicitly said it is not $0.1$.