HS08TEST - Editorial

#include <stdio.h>

int main(void) {
int x;
float y;
scanf("%d %f",&x,&y);
if(x%5==0 && (y>(x+0.50)))
y=y-x-0.50;
printf("%0.2f",y);
}

can anyone help me where i’m going wrong.??