print("🚀 Welcome to Sayler BTC Purchase Portal! 💸")

name = input("👤 Enter your name: ")

amount = float(input("💰 Enter amount in USD you want to invest in Bitcoin: "))

rate = 60000 # Example BTC rate

btc = amount / rate

print(f"✅ {name}, you have successfully purchased {btc:.6f} BTC at the rate of ${rate}/BTC! 🎉")

print("📦 Your BTC is on the way to your wallet! 🔐")

#SaylorBTCPurchase