Question #279165

Given string s, write a short expression for a string that includes s repeated five times


Expert's answer

def mult(str):
	return 5 * str;

if __name__=='__name__':
  print(mult(input()))

input: exp

output: expexpexpexpexp


LATEST TUTORIALS
APPROVED BY CLIENTS