function getsum(a , b) {
alert(a * b)
}
getsum(3,4)
for(let i = 1; i<= 100;i++){
if(i == 7 || i%7 == 0){
document.write(`${i}`)
document.write("<br>")
}
}
function nb(n) {
if (n < 4){
return 1;
}else{
return nb(n -3)+nb(n - 1)
}
}
console.log(nb(4))