﻿
from math import*
def change(X,Y):
  T=[];Z=[]
  for i in range(len(X)):
    T.append(...)
    Z.append(...)
  return T,Z

