# User Input

{% code overflow="wrap" lineNumbers="true" %}

```python
# Prompt user for input 
test = input("Enter the IP: ")
print(test)

while True: 
	test = input("Enter the IP: ")
	print(">>> {}".format(test))
		break 
	else:
		print("exploiting...")
```

{% endcode %}
