# 12387 - Python2020 Quiz1 Problem1
###### tags: `Quiz`
[TOC]
## Description
Write a Python program that takes a name from the input and prints a sentense "XXX is my best friend." to the output, where "XXX" is the name from the input.
Assume the program is written in a file named "friend.py" and run from the command line. The following block shows how the terminal shall look like: (the text in pink is typed by the user; others are printed by the program)
```bash
$ python3 friend.py
Mary
Mary is my best friend.
$
```
#### Input
One sentence includes one name.
###### Sample Input
```
Python
```
#### Output
One sentence claiming your best friend.
###### Sample Output
```
Python is my best friend.
```
## Solution
```python
#!/usr/bin/env python3
a = input()
print(a + ' is my best friend.')
```