test = input("CPF: ") 
cpf = test[:3] + "." + test[3:6] + "." + test[6:9] + "-" + test[9:]
print(cpf)

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