The output HTML element can be used to show the result or outcome of a calculation.
The idea, apparently, is to mirror input. The example given in the MDN site is:
<input type="range" id="b" name="b" value="50" /> +
<input type="number" id="a" name="a" value="10" /> =
<output name="result" for="a b">60</output>
</form>
