
theorem PYTHTRIP10:
  for a,b be Integer st a,b are_coprime holds a is odd or b is odd
  proof
    let a,b be Integer such that
    A1: a,b are_coprime;
    assume not thesis; then
    a gcd b is even;
    hence contradiction by A1;
  end;
