import standard using tactic theorem tst (a b : Prop) (H : a ↔ b) : b ↔ a := by apply iff_intro; apply (assume Hb, iff_mp_right H Hb); apply (assume Ha, iff_mp_left H Ha) check tst