aboutsummaryrefslogtreecommitdiff
path: root/hw.py
blob: b883951d494a316e8d720e94cb748f85089aabe0 (plain)
1
2
3
4
5
6
7
8
9
10
import random

chk = random.randint(0,1)

if chk:
	print("\033[95mheyy sexy!\033[0m")
else:
	print("Hello World!")

input()