online compiler and debugger for c/c++

code. compile. run. debug. share.
Source Code   
Language
def actor(actorname): print(actorname) exit() print("Welcome to: I guess your Re:Zero character!") characters_sealed = input("Is your character currently sealed away in a prison of shadows? (yes/no): ") characters_sealed = characters_sealed.lower() sealed = "" not_sealed = "" if "yes" in characters_sealed: actor("Your character is baddie Satella lol") if "no" in characters_sealed: not_sealed += "True" characters_gender = input("Does your character present as female or use feminine pronouns? (yes/no): ") characters_gender = characters_gender.lower() female = "" male = "" if "yes" in characters_gender: female += "True" else: male += "True" characters_affiliation = input("Is your character part of the Witch Cult or a Witch of Sin? (yes/no): ") characters_affiliation = characters_affiliation.lower() witch_side = "" kingdom_side = "" if "yes" in characters_affiliation: witch_side += "True" else: kingdom_side += "True" characters_haircolor = input("Does your character have standard human hair colors (Black, Brown, Blonde, Red, Pink, Blue) or unique fur/silver/white hair? (Type yes/no): ") characters_haircolor = characters_haircolor.lower() normalcolor = "" vividcolor = "" if "yes" in characters_haircolor: normalcolor += "True" else: vividcolor += "True" characters_height = input("Is your character exceptionally tall, a giant, or a large beast? (yes/no): ") characters_height = characters_height.lower() tall = "" short = "" if "yes" in characters_height: actor("Your character is prob Old Man Rom") exit() else: short += "True" characters_human = input("Is your character fully human? (Type 'yes' for human, 'no' for demi-human, spirit, or giant): ") characters_human = characters_human.lower() human = "" not_human = "" if "yes" in characters_human: human += "True" else: not_human += "True" characters_origin = input("Is your character an otherworlder from Earth (like Subaru/Al) or over 100 years old? (yes/no): ") characters_origin = characters_origin.lower() special_origin = "" normal_mortal = "" if "yes" in characters_origin: special_origin += "True" else: normal_mortal += "True" characters_location = input("Is your character primarily associated with Arcs 1-3 ( Watchtower, or Vollachia)? (yes/no): ") characters_location = characters_location.lower() arc123 = "" arc4567 = "" if "yes" in characters_location: arc123 += "True" else: arc4567 += "True" characters_combat = input("Does your character fight in close-range physical combat using weapons, claws, or fists? (yes/no): ") characters_combat = characters_combat.lower() meleefighter = "" nonmeleefighter = "" if "yes" in characters_combat: meleefighter += "True" else: nonmeleefighter += "True" characters_elderly = input("Is your character an elderly veteran (over 60 years old)? (yes/no): ") characters_elderly = characters_elderly.lower() elderly = "" young = "" if "yes" in characters_elderly: elderly += "True" else: young += "True" characters_helmet = input("Does your character wear a helmet or mask to hide their face/injuries? (yes/no): ") characters_helmet = characters_helmet.lower() helmet = "" no_helmet = "" if "yes" in characters_helmet: actor("Thats Al") else: no_helmet += "True" characters_pointy_ears = input("Does your character have long pointy ears (like an elf)? (yes/no): ") characters_pointy_ears = characters_pointy_ears.lower() pointy_ears = "" normal_ears = "" if "yes" in characters_pointy_ears: actor("Thats Emilia ") else: normal_ears += "True" characters_maid = input("Does your character work as a maid in a mansion? (yes/no): ") characters_maid = characters_maid.lower() maid = "" not_maid = "" if "yes" in characters_maid: actor("Thats Rem/Ram") else: not_maid += "True" characters_animal_look = input("Does your character have a small animal-like or beast-like appearance? (yes/no): ") characters_animal_look = characters_animal_look.lower() animal_look = "" human_look = "" if "yes" in characters_animal_look: actor("Thats Puck or Ricardo Welkin") else: human_look += "True" characters_military = input("Is your character an active military soldier or officer? (yes/no): ") characters_military = characters_military.lower() military = "" civilian = "" if "yes" in characters_military: actor("Thats Todd Volachia") else: civilian += "True" characters_status= input("Is your character a noble") characters_status=characters_status.lower() noble="" commoner="" if "yes" in characters_status: noble += "True" else: commoner += "True" if normalcolor == "True" and short == "True" and male == "True" and human == "True" and kingdom_side == "True" and special_origin == "True" and arc123 == "True" and nonmeleefighter == "True" and young == "True" and no_helmet == "True" and normal_ears == "True" and not_maid == "True" and commoner == "True" and not_sealed == "True" and human_look == "True" and civilian == "True": actor("Your character is Subaru Natsuki") if vividcolor == "True" and short == "True" and female == "True" and not_human == "True" and kingdom_side == "True" and special_origin == "True" and arc123 == "True" and nonmeleefighter == "True" and young == "True" and no_helmet == "True" and pointy_ears == "True" and not_maid == "True" and noble == "True" and not_sealed == "True" and human_look == "True" and civilian == "True": actor("Your character is Emilia") if vividcolor == "True" and short == "True" and male == "True" and not_human == "True" and kingdom_side == "True" and special_origin == "True" and arc123 == "True" and nonmeleefighter == "True" and young == "True" and no_helmet == "True" and normal_ears == "True" and not_maid == "True" and commoner == "True" and not_sealed == "True" and animal_look == "True" and civilian == "True": actor("Your character is Puck") if vividcolor == "True" and short == "True" and female == "True" and not_human == "True" and kingdom_side == "True" and normal_mortal == "True" and arc123 == "True" and meleefighter == "True" and young == "True" and no_helmet == "True" and normal_ears == "True" and maid == "True" and commoner == "True" and not_sealed == "True" and human_look == "True" and civilian == "True": actor("Your character is Rem") if vividcolor == "True" and short == "True" and female == "True" and not_human == "True" and kingdom_side == "True" and normal_mortal == "True" and arc123 == "True" and nonmeleefighter == "True" and young == "True" and no_helmet == "True" and normal_ears == "True" and maid == "True" and commoner == "True" and not_sealed == "True" and human_look == "True" and civilian == "True": actor("Your character is Ram") if vividcolor == "True" and short == "True" and female == "True" and not_human == "True" and kingdom_side == "True" and special_origin == "True" and arc123 == "True" and nonmeleefighter == "True" and young == "True" and no_helmet == "True" and normal_ears == "True" and not_maid == "True" and commoner == "True" and not_sealed == "True" and human_look == "True" and civilian == "True": actor("Your character is Beatrice") if normalcolor == "True" and short == "True" and female == "True" and not_human == "True" and kingdom_side == "True" and normal_mortal == "True" and arc4567 == "True" and meleefighter == "True" and young == "True" and no_helmet == "True" and normal_ears == "True" and maid == "True" and commoner == "True" and not_sealed == "True" and human_look == "True" and civilian == "True": actor("Your character is Frederica Baumann") if normalcolor == "True" and short == "True" and male == "True" and not_human == "True" and kingdom_side == "True" and normal_mortal == "True" and arc4567 == "True" and meleefighter == "True" and young == "True" and no_helmet == "True" and normal_ears == "True" and not_maid == "True" and commoner == "True" and not_sealed == "True" and human_look == "True" and civilian == "True": actor("Your character is Garfiel Tinsel") if normalcolor == "True" and short == "True" and male == "True" and human == "True" and kingdom_side == "True" and normal_mortal == "True" and arc123 == "True" and nonmeleefighter == "True" and young == "True" and no_helmet == "True" and normal_ears == "True" and not_maid == "True" and commoner == "True" and not_sealed == "True" and human_look == "True" and civilian == "True": actor("Your character is Otto Suwen") if normalcolor == "True" and short == "True" and female == "True" and human == "True" and kingdom_side == "True" and normal_mortal == "True" and arc123 == "True" and nonmeleefighter == "True" and young == "True" and no_helmet == "True" and normal_ears == "True" and maid == "True" and commoner == "True" and not_sealed == "True" and human_look == "True" and civilian == "True": actor("Your character is Petra Leyte") if normalcolor == "True" and short == "True" and male == "True" and human == "True" and kingdom_side == "True" and normal_mortal == "True" and arc4567 == "True" and meleefighter == "True" and young == "True" and no_helmet == "True" and normal_ears == "True" and not_maid == "True" and noble == "True" and not_sealed == "True" and human_look == "True" and military == "True": actor("Your character is Reinhard van Astrea") if normalcolor == "True" and short == "True" and female == "True" and human == "True" and kingdom_side == "True" and normal_mortal == "True" and arc4567 == "True" and meleefighter == "True" and young == "True" and no_helmet == "True" and normal_ears == "True" and not_maid == "True" and noble == "True" and not_sealed == "True" and human_look == "True" and civilian == "True": actor("Your character is Felt") if normalcolor == "True" and tall == "True" and male == "True" and not_human == "True" and kingdom_side == "True" and normal_mortal == "True" and arc4567 == "True" and meleefighter == "True" and elderly == "True" and no_helmet == "True" and normal_ears == "True" and not_maid == "True" and commoner == "True" and not_sealed == "True" and human_look == "True" and civilian == "True": actor("Your character is Old Man Rom") if normalcolor == "True" and short == "True" and male == "True" and human == "True" and kingdom_side == "True" and normal_mortal == "True" and arc4567 == "True" and meleefighter == "True" and elderly == "True" and no_helmet == "True" and normal_ears == "True" and not_maid == "True" and noble == "True" and not_sealed == "True" and human_look == "True" and civilian == "True": actor("Your character is Wilhelm van Astrea") if normalcolor == "True" and short == "True" and female == "True" and human == "True" and kingdom_side == "True" and normal_mortal == "True" and arc4567 == "True" and nonmeleefighter == "True" and young == "True" and no_helmet == "True" and normal_ears == "True" and not_maid == "True" and commoner == "True" and not_sealed == "True" and human_look == "True" and civilian == "True": actor("Your character is Anastasia Hoshin") if vividcolor == "True" and short == "True" and male == "True" and human == "True" and kingdom_side == "True" and normal_mortal == "True" and arc4567 == "True" and meleefighter == "True" and young == "True" and no_helmet == "True" and normal_ears == "True" and not_maid == "True" and noble == "True" and not_sealed == "True" and human_look == "True" and military == "True": actor("Your character is Julius Juukulius") if normalcolor == "True" and tall == "True" and male == "True" and not_human == "True" and kingdom_side == "True" and normal_mortal == "True" and arc123 == "True" and meleefighter == "True" and young == "True" and no_helmet == "True" and normal_ears == "True" and not_maid == "True" and commoner == "True" and not_sealed == "True" and human_look == "True" and civilian == "True": actor("Your character is Ricardo Welkin") if vividcolor == "True" and short == "True" and female == "True" and human == "True" and kingdom_side == "True" and normal_mortal == "True" and arc4567 == "True" and nonmeleefighter == "True" and young == "True" and no_helmet == "True" and normal_ears == "True" and not_maid == "True" and noble == "True" and not_sealed == "True" and human_look == "True" and civilian == "True": actor("Your character is Priscilla Barielle") if normalcolor == "True" and short == "True" and male == "True" and human == "True" and kingdom_side == "True" and special_origin == "True" and arc4567 == "True" and meleefighter == "True" and young == "True" and helmet == "True" and normal_ears == "True" and not_maid == "True" and commoner == "True" and not_sealed == "True" and human_look == "True" and civilian == "True": actor("Your character is Al") if vividcolor == "True" and short == "True" and male == "True" and not_human == "True" and witch_side == "True" and special_origin == "True" and arc123 == "True" and meleefighter == "True" and young == "True" and no_helmet == "True" and normal_ears == "True" and not_maid == "True" and commoner == "True" and not_sealed == "True" and human_look == "True" and civilian == "True": actor("Your character is Petelgeuse Romanee-Conti") if normalcolor == "True" and short == "True" and female == "True" and human == "True" and witch_side == "True" and normal_mortal == "True" and arc123 == "True" and meleefighter == "True" and young == "True" and no_helmet == "True" and normal_ears == "True" and not_maid == "True" and commoner == "True" and not_sealed == "True" and human_look == "True" and civilian == "True": actor("Your character is Elsa Granhiert") if vividcolor == "True" and short == "True" and male == "True" and human == "True" and witch_side == "True" and special_origin == "True" and arc4567 == "True" and nonmeleefighter == "True" and young == "True" and no_helmet == "True" and normal_ears == "True" and not_maid == "True" and commoner == "True" and not_sealed == "True" and human_look == "True" and civilian == "True": actor("Your character is Regulus Corneas") if vividcolor == "True" and short == "True" and male == "True" and human == "True" and kingdom_side == "True" and special_origin == "True" and arc123 == "True" and nonmeleefighter == "True" and young == "True" and no_helmet == "True" and normal_ears == "True" and not_maid == "True" and noble == "True" and not_sealed == "True" and human_look == "True" and civilian == "True": actor("Your character is Roswaal L. Mathers") if normalcolor == "True" and short == "True" and female == "True" and human == "True" and kingdom_side == "True" and special_origin == "True" and arc123 == "True" and meleefighter == "True" and young == "True" and no_helmet == "True" and normal_ears == "True" and not_maid == "True" and noble == "True" and not_sealed == "True" and human_look == "True" and civilian == "True": actor("Your character is Theresia van Astrea") if vividcolor == "True" and short == "True" and female == "True" and not_human == "True" and witch_side == "True" and special_origin == "True" and arc123 == "True" and nonmeleefighter == "True" and young == "True" and no_helmet == "True" and pointy_ears == "True" and not_maid == "True" and commoner == "True" and sealed == "True" and human_look == "True" and civilian == "True": actor("Your character is Satella / The Witch of Envy") if normalcolor == "True" and short == "True" and female == "True" and human == "True" and witch_side == "True" and special_origin == "True" and arc4567 == "True" and nonmeleefighter == "True" and young == "True" and no_helmet == "True" and normal_ears == "True" and not_maid == "True" and commoner == "True" and not_sealed == "True" and human_look == "True" and civilian == "True": actor("Your character is Echidna (Witch of Greed)") if normalcolor == "True" and short == "True" and female == "True" and human == "True" and witch_side == "True" and special_origin == "True" and arc4567 == "True" and meleefighter == "True" and young == "True" and no_helmet == "True" and normal_ears == "True" and not_maid == "True" and commoner == "True" and not_sealed == "True" and human_look == "True" and civilian == "True": actor("Your character is Minerva (Witch of Wrath)") if vividcolor == "True" and short == "True" and female == "True" and human == "True" and witch_side == "True" and special_origin == "True" and arc4567 == "True" and meleefighter == "True" and young == "True" and no_helmet == "True" and normal_ears == "True" and not_maid == "True" and commoner == "True" and not_sealed == "True" and human_look == "True" and civilian == "True": actor("Your character is Carmilla (Witch of Lust)") if normalcolor == "True" and short == "True" and male == "True" and human == "True" and witch_side == "True" and normal_mortal == "True" and arc4567 == "True" and meleefighter == "True" and young == "True" and no_helmet == "True" and normal_ears == "True" and not_maid == "True" and commoner == "True" and not_sealed == "True" and human_look == "True" and civilian == "True": actor("Your character is Lye Batenkaitos (Gluttony)") if normalcolor == "True" and short == "True" and female == "True" and human == "True" and witch_side == "True" and normal_mortal == "True" and arc4567 == "True" and meleefighter == "True" and young == "True" and no_helmet == "True" and normal_ears == "True" and not_maid == "True" and commoner == "True" and not_sealed == "True" and human_look == "True" and civilian == "True": actor("Your character is Sirius (Wrath)") if vividcolor == "True" and short == "True" and female == "True" and human == "True" and witch_side == "True" and normal_mortal == "True" and arc4567 == "True" and meleefighter == "True" and young == "True" and no_helmet == "True" and normal_ears == "True" and not_maid == "True" and noble == "True" and not_sealed == "True" and human_look == "True" and civilian == "True": actor("Your character is Capella Emerada Lugnica (Lust)") if normalcolor == "True" and short == "True" and male == "True" and human == "True" and kingdom_side == "True" and normal_mortal == "True" and arc4567 == "True" and nonmeleefighter == "True" and young == "True" and no_helmet == "True" and normal_ears == "True" and not_maid == "True" and noble == "True" and not_sealed == "True" and human_look == "True" and military == "True": actor("Your character is Vincent Vollachia") if normalcolor == "True" and short == "True" and male == "True" and human == "True" and kingdom_side == "True" and normal_mortal == "True" and arc4567 == "True" and meleefighter == "True" and young == "True" and no_helmet == "True" and normal_ears == "True" and not_maid == "True" and commoner == "True" and not_sealed == "True" and human_look == "True" and military == "True": actor("Your character is Todd Fang")

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