summaryrefslogtreecommitdiff
path: root/progs/a94.py
blob: 60ac0b21e23e489d6048e8d90ca986c2dd7bbde3 (plain)
1
2
3
def check_greater(test_tup1, test_tup2):
  res = all(x < y for x, y in zip(test_tup1, test_tup2))
  return (res)