# -*- coding: utf-8 -*- def main(): A = int(input()) B = int(input()) m = int(B/A) print(m) if __name__ == "__main__": main()