import.java.util.Scanner; <Error This ?> [<identifier> expected]

class Work3_2
{
    public static void main(String[] args)
    {
        Scanner input=new Scanner(System.in);
        String carid;
        int park,pay;
        int parked;

        System.out.print("Enter Car ID : ");
        carid=input.next();
        System.out.print("Enter Parking Times : ");
        park=input.nextInt();

        parked=park*60;

        if(parked <=15)
            pay = 0;
            else if(parked >15 && park <=60)
                pay=20;
                else if(parked >60 && park <=120)
                    pay=40;
                    else if(parked >120 && park <= 180)
                        pay=60;
                        else
                            pay=(parked-180)*10/60;

        System.out.printf("Your car Id is : %n" + carid);
        System.out.printf("Your Pay of Parking is : " + pay);



    }
}

Why it Error. Thanks for all

The correct is:
import java.util.Scanner;

not:
import.java.util.Scanner;

Be a part of the DaniWeb community

We're a friendly, industry-focused community of developers, IT pros, digital marketers, and technology enthusiasts meeting, networking, learning, and sharing knowledge.