# “AugmentedAssignment” (Solution)

## Answer

```
1
```

## Explanation

The construction

```csharp
a += Foo();
```

will be transformed to

```csharp
a = a + Foo();
```

[Problem](https://andreyakinshin.gitbook.io/problembookdotnet/en/math/augmentedassignment-p)
