--Khai báo các biến cần thiết---
Begin
--Nhập p,t,m---(nhớ repeat..until để hợp điều kiện);
If m=1 then
Begin
if (t=7) or(t=1) then tt:=p*180 else
tt:=p*600;
End
else
Begin
if (t<>7) or(t<>1) then tt:=p*270 else
tt:=p*900;
End;
Write('So tien phai tra la ',tt,' dong ');
Readln;
End.