#include <stdio.h>
#include <stdlib.h>
#include "Item.h"

int ITEMrand()
  { return 1000*rand()/RAND_MAX; }  
int ITEMscan(int *x)
  { return scanf("%d", x); }  
void ITEMshow(int x)
  { printf("%3d ", x); }  

