# https://open.kattis.com/problems/carrots
# CPU time limit: 1s
# Difficulty: 1.4 Easy

# 17 chars Top 10 for Ruby only: place 9 
$><<gets.split[1]

# 18 chars
# puts gets.split[1]

# 20 chars
# $><<$<.read.split[1]


# 23 chars: Not short enough for Top 10 (13..15 chars)
# gets=~/.+ (.+)$/
# $><<$1

