Codeforces: A. Hexadecimal’s theorem


The problem is from codeforces: http://codeforces.com/problemset/problem/199/A

199A Codeforces: A. Hexadecimal's theorem beginner codeforces implementation python tricks

There is no way you could get it wrong for this easy problem. I hope nobody would actually output the message. All the description is to confuse you. All you need to do is to print the sum as 0, 0, and the input. The following two sentences are the hint to the quick solution.

1. you can print any of them is there are multiple answers.

2. as sum of three not necessary different Fibonacci numbers.

#!/usr/bin/env python

print "0 0 %s" % raw_input()

–EOF (The Ultimate Computing & Technology Blog) —

GD Star Rating
loading...
188 words
Last Post: Create PHP Download Counters
Next Post: Codeforces: B. Drinks

The Permanent URL is: Codeforces: A. Hexadecimal’s theorem

Leave a Reply