import java.util.Scanner;


public class Tax{

  public static void main(String[] args){

    int tax_commission = 1500;

    Scanner input = new Scanner(system.in);

    System.out.print("What do you do for your living? : ");

    String job = input.nextString();

    System.out.print("How much you get paid per month? : ");

    int salary = input.nextInt();

    

    System.out.println("Since your job is  " + job + " and get paid like " + salary +" this much, the tax you have pay for this year is : " + (commission + salary * 0.13) );

  }

}



+ Recent posts