PROGRAMMING:the keys and values of a dictionary
Input a dictionary, swap the keys and values of the dictionary and then output the dictionary.
### Input Format:
### Output Format:
### Sample Inputs:
```in
{1:'a',2:'b',3:'c'}
```
### Sample Output:
```out
{'a': 1, 'b': 2, 'c': 3}
```
answer:If there is no answer, please comment
### Input Format:
### Output Format:
### Sample Inputs:
```in
{1:'a',2:'b',3:'c'}
```
### Sample Output:
```out
{'a': 1, 'b': 2, 'c': 3}
```
answer:If there is no answer, please comment