fork download
  1. #include<cstdio>
  2. #include<cstdlib>
  3. int main(void){
  4. int v,m,s;
  5. scanf("%d%d%d",&v,&m,&s);
  6. if (s%5==0){
  7. printf("-1");
  8. }
  9. else{
  10. printf("%d",s%5);
  11. }
  12.  
  13. return EXIT_SUCCESS;
  14. }
  15.  
Success #stdin #stdout 0s 15240KB
stdin
1 1 20
stdout
-1