struct Multiplier { let valueWithMultiply:Int subscript(multiplyedBy:Int)->Int { return self.valueWithMultiply * multiplyedBy } }