def shoot(): inputlines = input("input:") res = inputlines.split(" ") n=int(res[0]) m=int(res[1]) sum = 0 i = 2 j = 2+2*n while i<(2*n+2) and j<(2+2*n+m): print(res[i+1],"***",res[i],"***",res[j]) if int(res[j])>=int(res[i]) and int(res[j]) <=int(r...