以下のコードの実行結果として正しいものはどれですか? ```python import requests response = requests.get("https://httpbin.org/status/200") print(f"ステータス: {response.status_code}") ```