> For the complete documentation index, see [llms.txt](https://andreyakinshin.gitbook.io/problembookdotnet/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://andreyakinshin.gitbook.io/problembookdotnet/en/math/augmentedassignment-p.md).

# “AugmentedAssignment” (Problem)

What will the following code display?

```csharp
int a = 0;
int Foo()
{
  a = a + 42;
  return 1;
}
void Main()
{
  a += Foo();
  Console.WriteLine(a);
}
```

[Solution](/problembookdotnet/en/math/augmentedassignment-s.md)
