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! š")