print(qq(enter marks in maths), \n); $math=; print(qq(enter marks in science),\n); $sci=; print(qq(enter marks in history),\n); $hist=; print(qq(enter marks in geography),\n); $geo=; $sum=($math+$sci+$hist+$geo); $per=($sum/400); $percentage=($per*100); print(qq(your percentage is=), $percentage); #### >