Given string s, write a short expression for a string that includes s repeated five times
def mult(str): return 5 * str; if __name__=='__name__': print(mult(input()))
input: exp
output: expexpexpexpexp