<?php

// your code goes her
$total = 10;

for($i=1;$i<=30;$i++){
$total *= 2;
}

echo $total;