<p>A <strong>sentence</strong> is a list of words that are separated by a single space with no leading or trailing spaces. Each of the words consists of <strong>only</strong> uppercase and lowercase English letters (no punctuation).</p>
<ul>
<li>For example, <code>"Hello World"</code>, <code>"HELLO"</code>, and <code>"hello world hello world"</code> are all sentences.</li>
</ul>
<p>You are given a sentence <code>s</code> and an integer <code>k</code>. You want to <strong>truncate</strong><code>s</code> such that it contains only the <strong>first</strong><code>k</code> words. Return <code>s</code><em> after <strong>truncating</strong> it.</em></p>