def wark(a,b): c = b / a if c == int(c): print(int(c)) else: print(int(c + 1)) wark(int(input('a:')),int(input('b:')))