How do you define the variables?

Help, I dont know what I did wrong. It wouldn’t print act1 or act2 after all of the code.

cc1 = "NAME"
H = 500
J = 300
def C1A():
  print(cc1,"""
  LVL. 50
  HEART:   """,H,"""
  JUICE:   """,J)
  act1 = input("what will {} do? (TYPE ATTACK or SKILL in caps please) : ".format(cc1))
  if act1 == "ATTACK":
    act2 = "ATTACK"
    act1 = "ATTACK"
  elif act1 == "SKILL":
    act1 = "SKILL"
    act2 = input("SMASH\n13 JUICE\n CHILLING OUT\n 5 JUICE\n GUARD\n 0 JUICE\n (Type either SMASH , CHILLING OUT or GUARD): ")
    if act2 == "SMASH":
      act2 = "SMASH"
      act2 = act2.upper()
      print(cc1,"""
      LVL. 50
      HEART:   """,H,"""
      JUICE:   """,J - 13)
    elif act2 == "CHILLING OUT":
      act2 = "CHILLING OUT"
      act2 = act2.upper()
      print(cc1,"""
      LVL. 50
      HEART:   """,H,"""
      JUICE:   """,J - 13)
    elif act2 == "GUARD":
      act2 = "GUARD"
      print("You don't lose any JUICE")
    else:
      print("You didn't choose the following choices")
      act2 = "ATTACK"
  else:
    print("You didn't choose the choosen choices.")
    act1 = "DID NOTHING"
    act2 = "DID NOTHING"
C1A()
print(act1,act2)

please repaste the code like this:
three backtick marks with the word py next to it
CODE_HERE
then another three backtick marks

print("It'll look like this")

I have formatted the code as I have way too much time on my hands (btw I made it so it doesn’t matter if the user types in caps or not using the .upper() function):

cc1 = "NAME"
H = 500
J = 300

def C1A():
	print(cc1,"""
	LVL. 50
	HEART: """,H,"""
	JUICE: """,J)
	act1 = input("what will {} do? (TYPE ATTACK or SKILL) : ".format(cc1)).upper()
	if act1 == "ATTACK":
		act2 = "ATTACK"
		act1 = "ATTACK"
	elif act1 == "SKILL":
		act1 = "SKILL"
		act2 = input("SMASH\n13 JUICE\n CHILLING OUT\n 5 JUICE\n GUARD\n 0 JUICE\n (Type either SMASH , CHILLING OUT or GUARD): ")
		if act2 == "SMASH":
			act2 = "SMASH"
			act2 = act2.upper()
			print(cc1,"""
			LVL. 50
			HEART: """,H,"""
			JUICE: """,J - 13)
		elif act2 == "CHILLING OUT":
			act2 = "CHILLING OUT"
			act2 = act2.upper()
			print(cc1,"""
			LVL. 50
			HEART: """,H,"""
			JUICE: """,J - 13)
		elif act2 == "GUARD":
			act2 = "GUARD"
			print("You don’t lose any JUICE")
		else:
			print("You didn’t choose the following choices")
			act2 = "ATTACK"
	else:
		print("You didn’t choose the choosen choices.")
		act1 = "DID NOTHING"
		act2 = "DID NOTHING"
		C1A()
	print(act1,act2)

C1A()

Anyway your code seems to be working fine for me: