//Jon Pelc  6844


public class  Pelc_FirstCode{
    
    public static void main(String[] args) {
       System.out.println("Two plus two typed as a string gives:");
       System.out.println("2+2");
       System.out.println("However if you type it as a number even though it prints out a string you get:");
       System.out.println(2+2);
    }
    
}
