def data(i):
    return int(''.join([i[6:], i[3:5], i[0:2]]))
print(data('05/10/1983'))

#https://pt.stackoverflow.com/q/396790/101