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