#题比较简单,如果给出的数字不是顺序的,就会比较麻烦

import re, bisect

w = re.findall(r'\d+', input())
n = list(map(int, w))
print(max(n))