import requests
import json
import sys

# Get the concatenated string from command-line arguments
arguments = sys.argv[1]

# Split the string into individual values
baseurl, apikey, point = arguments.split('|')

# Concatenate the URL string using the variables
url = baseurl + apikey + point

response = requests.get(url)

data = response.json()

print(json.dumps(data))
