Firebase issue

I’m try to upload image to the firebase but showing below error .

{
	"error": {   
	"code": 403,
	"message": "Permission denied. Could not perform this operation"
}
}

My database rules

{
  "rules": {
    ".read": true,
    ".write":true
  }
}

storage ruels

service firebase.storage {
  match /b/dataadd-59236.appspot.com.com/o {
    match /{allPaths=**} {
      allow read, write;
    }
  }
}

please help me out anyone
Thanks