Wouldn't it be nice if variables could figure out their type based on the value that we give them? Well, here's the thing: they can.

Sweet! We can use auto keyword instead of a type to tell the compiler to deduce the type from the value. That's what we call automatic type deduction.

Psst: type deduction only works when we initialize a variable upon creation.