Display current epoch time
class Epoch {
  public static void main(String[] argv) {
    long epochLong = System.currentTimeMillis();
    long epochShort = epochLong/1000;
    System.out.println("Long epoch: " + epochLong + ", short epoch: " + epochShort);
  }
}