fork download
  1. #include <stdio.h>
  2.  
  3. int main(void) {
  4. int a = 695;
  5. // int b = a%2;
  6. // int ans = a-(5*b);
  7. printf("%d",a-(5*(a%2)));
  8.  
  9. }
  10.  
Success #stdin #stdout 0s 5316KB
stdin
Standard input is empty
stdout
690