in reply to Re^2: hash of hash of hash of hash of hash...
in thread hash of hash of hash of hash of hash...

No, you don't. When a key does not contain any white space or does not start with a sigil, Perl will automatically stringify it. Thus

print "$topHash{2010}{Feb}{11}{00}{03}\n";

is syntactically equivalent to

print "$topHash{'2010'}{'Feb'}{'11'}{'00'}{'03'}\n";.

See Scalar value constructors in perldata, for example.