online compiler and debugger for c/c++

code. compile. run. debug. share.
Source Code   
Language
print("*****************************Bill Splitter*****************************\ *****\n\n") money = int(input("Enter the amount of money the whole group have to pay: ")) peoples = int(input("Enter the number of people for bill splitting : ")) print("\nChoose\n1.If yo want to pay tip in % amount with respect to your bill:\ Enter 1\n2.If you want to give the money which you have enterd : Enter 2\n3.If \ there is no tipping allowed : Enter 3 ") choose = int(input("\nEnter your option : ")) if choose == 1: tipPer = int(input("\nEnter the % of tip you want to give according to your\ total bill: ")) # calculation part amount = money / peoples tip = (tipPer*money)/100 totTip = tip / peoples pay = amount + totTip tipinc = tip + money print("\nCalculating....................") # display part print(f"\n\nThe total money to pay : {money} $") print(f"The number of people in which the bill will split : {peoples}") print(f"The amount of tip you chose : {tip} $") print(f"The amount of tip each person will pay : {totTip} $\n\n") print(f"The total Money after calculating tip : {tipinc} $") print(f"The amount of money everyone should pay is : {pay} $") elif choose == 2: tipAm = int(input("\nEnter the total amount of tip which you wanna pay : ")) # calculation Part amount = money / peoples totTip = tipAm / peoples tipinc = tipAm + money pay = amount + totTip print("\nCalculating....................") # printing part print(f"\n\nThe total money to pay : {money} $") print(f"The number of people in which the bill will split : {peoples} ") print(f"The amount of tip for everyone : {tipAm} $") print(f"The amount of tip per person will pay : {totTip} $\n\n") print(f"The total Money after calculating tip : {tipinc} $") print(f"The amount of money everyone should pay is : {pay} $") elif choose == 3: print("The amount of tip you wanna give is 0.") amount = money / peoples print(f"The amount of money everyone should pay is : {amount} $") else: print("Invalid option choosen") print("\n\n**********************************Thankyou**************************\ *********")

Compiling Program...

Command line arguments:
Standard Input: Interactive Console Text

                

                

Program is not being debugged. Click "Debug" button to start program in debug mode.

#FunctionFile:Line
VariableValue
RegisterValue
ExpressionValue