from playing_cards import Deck, Card, PokerHand

c = Card(1,0)
d = Deck()
d.shuffle()

print(str(c))


print(str(d))

ph1 = PokerHand()

