<!DOCTYPE html>
<html>

  <head>
    <link rel="stylesheet" href="style.css">
    <script src="script.js"></script>
  </head>

  <body>
    <form>
<table border="0" cellspacing="1" cellpadding="1">
<tbody>
<tr>
<td><input name="a" size="20" value="4500" /></td>
<td>стоимость ГБО, грн.</td>
</tr>
<tr>
<td><input name="b" size="20" value="13.5" /></td>
<td>стоимость 1 литра бензина, грн.</td>
</tr>
<tr>
<td><input name="c" size="20" value="6.0" /></td>
<td>стоимость 1 литра газа, грн.</td>
</tr>
<tr>
<td><input name="d" size="20" value="12" /></td>
<td>расход бензина на 100 км, л.</td>
</tr>
<tr>
<td><input name="e" size="20" value="25000" /></td>
<td>пробег автомобиля в год, км</td>
</tr>
<tr>
<td colspan="2"><input type="button" name="g" onclick="f.value = Math.round(((a.value * 36500)/((b.value-c.value*1.1)*d.value*e.value)))" value="Считать" /></td>
</tr>
<tr>
<td><input name="f" size="20" value="0" /></td>
<td>
<p>окупаемость ГБО, дней</p>
</td>
</tr>
</tbody>
</table>
</form>
  </body>

</html>
// Code goes here

/* Styles go here */