class O{ func hello(_ b:Int)-> Int{ return b } } class K:O{ var b:Int init(_ b: Int){ self.b = hello(b) } } var b = K(2) print(b.b)