/**
 *
 * @author Ramana Isukapalli
 */
public class Operators {

    /**
     * @param args the command line arguments
     */
    public static void main(String[] args) {
        // TODO code application logic here
        int i = 5, j = 6;
        int k = i+j;
        int l = j - i;
        int m = i * j;
        System.out.println ("i+j = " + k);
        System.out.println ("j-i = " + l);
        System.out.println ("i*j = " + m);
        System.out.println ("j%i = " + j%i);
        i++;
        System.out.println ("i: " + i);
        i--;
        System.out.println ("i: " + i);
    }

}
