Are You Playing Banjo
Submit solution
Points:
1
Time limit:
2.0s
Memory limit:
256M
Problem types
Allowed languages
Python
Write a program that reads one name.
If the name starts with R or r, the person plays banjo.
Otherwise, the person does not play banjo.
Input
The input contains one name on one line.
Output
If the name starts with R or r, output:
<name> plays banjo
Otherwise, output:
<name> does not play banjo
Sample Input
Robert
Sample Output
Robert plays banjo
Comments