fork download
  1. #include <stdio.h>
  2.  
  3. int main(void) {
  4. // your code goes here
  5. int a;
  6. scanf("%d",&a);
  7. a=a/2;
  8. printf("%d",a);
  9. return 0;
  10. }
  11.  
Success #stdin #stdout 0.01s 5316KB
stdin
11
stdout
5