Assets\PlayerMovement.cs(5,44): error CS1003: Syntax error, ',' expected

Code Example - Assets\PlayerMovement.cs(5,44): error CS1003: Syntax error, ',' expected

                
                        using System.Collections;
using System.Collections.Generic;
using UnityEngine;

public class HealthHelper : MonoBehaviour
{

    public int MaxHealth - 100;
    public int Health = 100;

    void Start()
    {
        
    }

    // Update is called once per frame
    void Update()
    {
        
    }
}