fork download
  1. #include <stdio.h>
  2. int main(){
  3. //sample input and output:
  4. char name[10];//n0 N n1 C n2 M
  5.  
  6. int nN, nC, nM, temp;
  7.  
  8. scanf("%d",nN);
  9. scanf("%d",nC);
  10. scanf("%d",nM);
  11. temp = abs(nN/nC);
  12.  
  13. temp = temp + abs(temp/nM);
  14.  
  15.  
  16.  
  17. printf("%d",temp);
  18. return 0;
  19. }
Runtime error #stdin #stdout 0s 2156KB
stdin
Standard input is empty
stdout
Standard output is empty