407055: GYM102697 026 Competition Rules

Memory Limit:256 MB Time Limit:1 S
Judge Style:Text Compare Creator:
Submit:0 Solved:0

Description

026. Competition Rulestime limit per test1 secondmemory limit per test256 megabytesinputstandard inputoutputstandard output

Making the rules for a competition is an important part of an online competition. For this problem, you will read the rules in the input, and print them out to the screen.

To take in input, you can use the input() command. To print out exactly what is inputted, you would do print(input()).

For this problem, you'll need to print "Competition Rules:", AND the input, on two separate lines. You should use two separate print statements.

Input

The input consists of a single line: the rules for the competition

Output

Output two lines. The first line should contain the string "Competition Rules:" (no quotes) The second line should re-print the rules from the input.

ExampleInput
This is a competition rule
Output
Competition Rules:
This is a competition rule

加入题单

算法标签: