#include<iostream.h>
int main ()

{
int earn;

cin>>"Enter your wage";
if (earn<6000);
cout<<"You dont pay tax"<<endl;
if ((earn>5000) && (earn<20000));
cout<<"You have to pay 20%"<<endl;
if (earn>=20000);
cout<<"You pay 90%"<<endl;

}

i get two errors. whats wrong wid the code