If you shift a number with $number<<20, it's multiplied by 1024*1024. That's useful to convert MB into Bytes:

Code:
megabytes = 256;
bytes = megabytes << 20;