import java.io.*;
class PayCheck
//note-programmer defined class names begin with capitals
{
public static void main(String[] args)
{
double mySalary, myBaseSalary, myOvertime, hourlyRate;
int hoursOvertime;
myBaseSalary=10000;
hourlyRate=5.50;
hoursOvertime=10;
//perform a decision to calculate mySalary
if(hoursOvertime>0)
{
myOvertime=hourlyRate*hoursOvertime;
mySalary=myBaseSalary+myOvertime;
}//endif
else
{
mySalary=myBaseSalary;
}//end else
//Print the result:
System.out.println("Your salary this week is $"+mySalary);
}//end method definition
}