We have a centimeter value class in the scope:
class Centimeter(val value: Int)
Add a meter value class so that we can convert a meter to a centimeter without additional code and imports. The following code must work:
val centimeter: Centimeter = Meter(2)
println(centimeter) // Centimeter(200)