// Input labels
const bill = document.getElementById("bill").value
const amountOfPeople = document.getElementById("amountOfPeople").value
// Result divs
const totalPerPerson = document.getElementById("totalPerPerson")
const totalAmount = document.getElementById("totalAmount")
// Formula
let billPerPerson = bill / amountOfPeople;
// Display in div
totalPerPerson.textContent = billPerPerson
// Input labels
const bill = document.getElementById("bill").value
const amountOfPeople = document.getElementById("amountOfPeople").value
// Result divs
const totalPerPerson = document.getElementById("totalPerPerson")
const totalAmount = document.getElementById("totalAmount")
// Formula
let billPerPerson = bill / amountOfPeople;
// Display in div
totalPerPerson.textContent = billPerPerson