function cont(){
let cont = 0
while(cont <= 100){
if(cont == 0){
cont++
}
else if(cont % 2 == 0){
console.log(cont)
cont++
}else{
cont++
}
}
}
cont()