fork download
  1. #include <stdio.h>
  2. int main()
  3. {
  4. int b,h,area;
  5. scanf("%d %d",&b,&h);
  6. area=(1/2)*b*h;
  7. printf("%d",area);
  8. return 0;
  9. }
  10.  
Success #stdin #stdout 0s 5324KB
stdin
5 6
stdout
Standard output is empty