func * (left:String, right:Int) -> String {
return String(repeating:left, count:right)
}
print ("HA" * 5)