#!/usr/bin/python

import os

if __name__ == '__main__':
    if os.path.isfile("CMakeLists.txt"):
        print 20
    else:
        print 0
