what is wrong

#include <stdio.h>
int main()
{
int x;
float y=2000;
printf(“Enter amount to be withdrawn”);
scanf("%d",&x);
printf("%d %.2f\n",x,y);
if((x%5==0)&&((x+0.50)<y))
{
printf("%.2f\n",y-x-0.50);
}
else
{
printf("%.2f\n",y);
}

return 0;   

}