Inle Choices
(Choose 1 answer)
static (int x, int y) GetValue(int a, int b){
(int x, int y) result = (0.0):
a+= b;
b=a-b;
a -= b;result.x = a;
result.y = b;return result;
}
static void Main(string[] args)
{ int a = 10, b = 20;
varr = GetValue(a, b):
Console.WriteLine($"{r.x}. {r.y}"):
}
The output will be:
A. 10,20
Β. 20,10
C. 10,10
D. 20,20
44