# Mod 6.1: Basic Work with Strings #
Write a program that asks the user to input a string. Output that same string converted to uppercase letters, and that same string with all of the letter 'a' replaced with '!'.
Make sure your code looks like mine:
```
Please enter a word: awesome
AWESOME
!wesome
```