class Hovedprogram {
public static void main(String[] args){
Dataklynge abel = new Dataklynge(12);
for (int i = 0; i < 650; i++)
abel.settInn(new Node(64,2));
for (int i = 0; i < 16; i++)
abel.settInn(new Node(16,1));
System.out.println("Noder med minst 32 GB:"+ abel.antallNoderMedNokMinne(32));
System.out.println("Noder med minst 64 GB:"+ abel.antallNoderMedNokMinne(64));
System.out.println("Noder med minst 128 GB:"+ abel.antallNoderMedNokMinne(128));
}
}