Advertisement
Guest User

Untitled

a guest
Feb 29th, 2020
104
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.21 KB | None | 0 0
  1. import requests
  2.  
  3. address, port, a, b = input(), input(), input(), input()
  4.  
  5. response = requests.get(f'{address}:{port}', params={'a': a, 'b': b}).json()
  6. print(*sorted(response['result']))
  7. print(response['check'])
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement