program arithExpr; declare n1,n2,n3:integer; begin n1:=15; n2:=45; n3:=6; write((2*n1+n2) div (n3 div 2)); end arithExpr.