Write a Python program to print a right-angled triangle star pattern using nested loops.
* * * * * * * * * * * * * * *
- Prompt the user for the number of rows
- Use nested loops only
- Follow the exact output format
- Do not print extra spaces or lines
5
* * * * * * * * * * * * * * *
| Test Case | Rows | Points |
|---|---|---|
| Test 1 | 3 | 5 |
| Test 2 | 5 | 5 |
| Test 3 | 7 | 5 |
| Total: 15 Points |