#include <iostream>
#include <algorithm>
using namespace std;

int main(){
   string str = "Deepa";
   string reversed = "";
   
   for(int i = str.length-1; i >= 0; i--){
       reversed += str;
       
   }
   cout<<reversed;
    
}