Write a Python function `check_char(string)` that checks whether the given string starts and ends with the same character. The function should return `"Valid"` if the string starts and ends with the same character, and `"Invalid"` otherwise.
#### Example Usage
```python [main.nopy]
check_char("abba") # Output: "Valid"
check_char("a") # Output: "Valid"
check_char("abcd") # Output: "Invalid"
```
#### Constraints
- The input string will only contain lowercase alphabetic characters (`a-z`).
- The input string will have a length of at least 1.