make a program that will input 6 numbers abd output the highest number and lowest number

Sure! I can help you with that. Here's a Python program that takes 6 numbers as input and outputs the highest and lowest numbers:

```python
# Input 6 numbers
numbers = []
for i in range(6):
num = int(input("Enter a number: "))
numbers.append(num)

# Find the highest and lowest numbers
highest = max(numbers)
lowest = min(numbers)

# Output the highest and lowest numbers
print("Highest number:", highest)
print("Lowest number:", lowest)
```

To run this program, follow these steps:

1. Install Python on your computer if you haven't already. You can download it from the official Python website (https://www.python.org/downloads).

2. Open a text editor (such as Notepad, Sublime Text, or VS Code).

3. Copy and paste the above code into the text editor.

4. Save the file with a `.py` extension, for example, `find_highest_lowest.py`.

5. Open a command prompt or terminal and navigate to the directory where you saved the file.

6. Run the program by entering the command `python find_highest_lowest.py`.

7. Enter six numbers as prompted by the program.

8. The program will display the highest and lowest numbers among the input values.

That's it! You now have a program that takes 6 numbers as input and outputs the highest and lowest numbers.