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

chk = random.randint(0,1)

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

input()