var Thousand = Math.pow(10,3),
Million;
//Million = Math.pow(10,3) * Math.pow(10,3);
//Million = Math.pow(10,6);
Million = Thousand * Thousand;
var Thousand = Math.pow(10,3),
Million = Thousand * Thousand,
Billion;
//Billion = Math.pow(10,3) * Math.pow(10,3) * Math.pow(10,3);
//Billion = Math.pow(10,6) * Math.pow(10,3);
//Billion = Math.pow(10,9);
//Billion = Thousand * Thousand * Thousand;
Billion = Million * Thousand;
var Thousand = Math.pow(10,3),
Million = Thousand * Thousand,
Billion = Million * Thousand,
Trillion;
//Trillion = Math.pow(10,3) * Math.pow(10,3) * Math.pow(10,3) * Math.pow(10,3);
//Trillion = Math.pow(10,6) * Math.pow(10,6);
//Trillion = Math.pow(10,9) * Math.pow(10,3);
//Trillion = Math.pow(10,12);
//Trillion = Thousand * Thousand * Thousand * Thousand;
//Trillion = Million * Million;
Trillion = Billion * Thousand;