Code
<!DOCTYPE html>
<html>
    <head>
                <title>Wikitechy output tag</title>
        </head>
    <body>
        <h2>HTML output tag with example</h2>
        <form oninput="c.value=a.value+b.value">
            <input type="text" name="a" value="Wiki"> +
            <input type="text" name="b" value="techy"> =
            <output name="c">Wikitechy</output>
        </form>
    </body>
</html>



Result