fork download
  1.  
  2. uses crt;
  3. var a , h : integer ;
  4. s : real ;
  5. begin
  6. clrscr;
  7. writeln('nhap canh : ' );readln(a);
  8. writeln('nhap duong cao:');readln(h);
  9. s := (a*h)/2;
  10. write(s:4:1);
  11. readln;
  12. end.
  13.  
Success #stdin #stdout 0s 5648KB
stdin
3
4
stdout
nhap canh : 
nhap duong cao:
 6.0