Respuesta :
Answer:
lat = [40.59, 40.52, 40.621, 40.519, 40.56, 41.265, 40.61, 40.806, 41.259, 41.265, 41.264, 41.264, 41.259, 41.262, 41.263]
lon = [69.532, 69.419, 69.354, 69.263, 69.478, 70.805, 69.706, 70.331, 70.815, 70.823, 70.815, 70.81, 70.824, 70.811, 70.811]
print("Farthest north = " + str(max (lat)))
print("Farthest west = " + str(max (lon)))
print("Farthest south = " + str(min (lat)))
print("Farthest east = " + str(min (lon)))
Explanation:
Answer:
first = int(input("Enter a number: "))
second = int(input("Enter a number: "))
third = int(input("Enter a number: "))
print("Largest: " + str(max(first,second,third)))
Explanation:
ez 100%