Respuesta :

In Python:

def moventhfront(n):
     #logic goes here

In Java:

public int moventhfront(int n)
{
     // logic goes here
     return n;
}

In C:

int moventhfront(int n)
{
     // logic goes here
     return n;
}