#!/usr/bin/env python3 s, k = map(int,input().split()) if k < s: assert False else: print(s)