Problem: Print the word Dco...oder Input: A positive integer n Output: Print the word: Dco..oder(letter o must be repeted n times) Constraints: 0<n<50 Sample Input: 5 Sample Output: Dcoooooder
print('Dc' + 'o'*int(input()) + 'der')