what is the problem in my code for solution of atm problem ..

import java.util.Scanner;
class HelloWorld{
public static void main(String []args){
Scanner sc=new Scanner(System.in);
int x;
double y=2000;
System.out.println(“input the amount to be withdrawn in the multiple of 5”);
x=sc.nextInt();
if((x%5!=0)||x>=y){
System.out.println(y);
}
else{
y=y-x;
y=y-0.50;
System.out.println(y);

    }
 }

}

Donot print unnecessary lines… Otherwise It will not pass…

like… System.out.println(“input the amount to be withdrawn in the multiple of 5”)