PROGRAMMING:Set and list, in order from small to large into a dictionary
There are two sets and lists of the same length, which are combined into a dictionary from small to large.
###Input format:
Enter two sets and lists of the same length. All set elements are integer type and all list elements are string type.
###Output format:
Combined dictionary.
###Input example:
Here is a set of inputs. For example:
```in
{1,2,6,5,3,4}
['aa','cc','bb','d','f','e']
```
###Output example:
The corresponding output is given here. For example:
```out
{1: 'aa', 2: 'bb', 3: 'cc', 4: 'd', 5: 'e', 6: 'f'}
```
answer:If there is no answer, please comment
###Input format:
Enter two sets and lists of the same length. All set elements are integer type and all list elements are string type.
###Output format:
Combined dictionary.
###Input example:
Here is a set of inputs. For example:
```in
{1,2,6,5,3,4}
['aa','cc','bb','d','f','e']
```
###Output example:
The corresponding output is given here. For example:
```out
{1: 'aa', 2: 'bb', 3: 'cc', 4: 'd', 5: 'e', 6: 'f'}
```
answer:If there is no answer, please comment