/*
 * Main.java
 *
 * Created on March 19, 2008, 3:04 PM
 *
 * To change this template, choose Tools | Template Manager
 * and open the template in the editor.
 */

package javaapplication71;

/**
 *
 * @author student
 */
public class Main {
    
    /** Creates a new instance of Main */
    public Main() {
    }
    
    /**
     * @param args the command line arguments
     */
    public static void main(String[] args){int a=3,b=5,s=(a*b),p=2*(a+b);
  System.out.println("s="+s+"\n"+"p="+p);
  
        // TODO code application logic here
    }
    
}

