summaryrefslogtreecommitdiff
path: root/progs/a208.py
blob: 37d428e8a3d88d511dccde044c5cf10e77bd53d8 (plain)
1
2
3
def check_smaller(test_tup1, test_tup2):
  res = all(x > y for x, y in zip(test_tup1, test_tup2))
  return (res)