fork download
  1. #include <stdio.h>
  2.  
  3. main()
  4. {
  5. int j, i=0;
  6. scanf("%d",&j);
  7. while(i<j)
  8. i+=5;
  9. printf("%d",i);
  10. }
  11.  
Success #stdin #stdout 0s 5312KB
stdin
25
stdout
25