/*
 * Main.java
 *
 * Created on March 19, 2008, 1:53 PM
 *
 * To change this template, choose Tools | Template Manager
 * and open the template in the editor.
 */

package cm;

/**
 *
 * @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) {
       double m=4.0,Mm=40,V=1,Cm;
       Cm=m/Mm*V;
       System.out.println("Cm="+Cm);}
    
}
       
   
    

