import random
import time
# Display the title in simple big font
print(" ๐งโ๐ณโ ๐ฑโ๐ฆโ๐ธโ๐นโ ๐ฐโ๐ฎโ๐ณโ๐ฌโ")
print(" ๐ธ๐จ๐ท๐ฎ๐ต๐น ๐น๐ด๐ด๐ฑ\n")
# List of possible results
results = ["๐Big๐", "๐Small๐", "๐ Red ๐ด ๐", "๐ Green ๐ข ๐"]
# Function to get prediction
def get_prediction():
# Asking user for the last 3 numbers of the period number
period_number = input("Enter last 3 digits of period number: ")
# Simulating checking process
for i in range(10, 110, 10):
print(f"\nChecking {i}...", end="", flush=True)
time.sleep(0.5)
# Randomly selecting a result
prediction = random.choice(results)
# Showing the prediction result
print(f"\n\nNEXT PREDICTION IS:- {prediction}")
# Execute the function
get_prediction()