/*
 * To change this template, choose Tools | Templates
 * and open the template in the editor.
 */


import java.applet.*;
/**
 *
 * @author Sergio
 */
public class FirstApplet extends Applet{
    FactorsPanel panel;
    @Override
    public void init(){
        
    }
    @Override
    public void start(){
        panel = new FactorsPanel();
        add(panel);
    }
    
}

