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

package hw10;

/**
 *
 * @author kvaradar
 */
public class MyWord {

    int ipAddress;
    int frequency;

    public MyWord(int i, int f) {
        ipAddress = i;
        frequency = f;
    }

}
