
/**
 *
 * @author Damien Bell <SkyeShatter@gmail.com>
 */
import java.util.Scanner;
public class Jtutorial1 {
    public static void main(String args[]){
       // Scanner input = new Scanner(System.in);
        
        //System.out.println("Hello World");
        
        //System.out.println("Enter a number: ");
        //int a; //Integer.  -1,  -15,   -25,  1 , 15, 25
        //a = input.nextInt();
        
        //System.out.println( a ); //Prints out current value of A
        
        //double bankInterest; //Camelback notation.  First word has a lowercase letter, and all words after start with a capital letter
        //double bankLoanInterest;
        
        //double i;   -- Stores whole and decimal numbers
        
        //char c='C'; Holds one letter
        //System.out.println(c); Outputs the letter
        
        //String hello ="Hello World"; //Holds multiple letters
        //System.out.println(hello); //Outputs the string above.
        
        
        
        
        //PEMDAS -  Paren, Exponents, Multi, Division, Addition, Subtraction
        //P-MD-AS-  Paren, Multiplication/divison, Addition / Subtaction.
        System.out.println(2+4*8/2);

    } //End main
} //End class
