In Argentina the COUPLE GAMESHOW named You and Me is going to happen.
In order to complete the application process for the game show the participants need to find their average age.
Can you help them them to find their average age?
NOTE:
The Programming Language need to be used is : C++
Refer sample input and output in the test cases.
TEST CASE 1
TEST CASE 2
INPUT
INPUT
25
21
OUTPUTI am 25
You are 21
We are around 23
#include <iostream>
using namespace std;
int main() {
int a,b,c;
cin>>a;
cin>>b;
c=(a+b)/2;
cout<<"I am "<<a;
cout<<"\nYou are "<<b;
cout<<"\nWe are around "<<c;
return 0;
}
Here's a brief explanation of how the code works:
Input Handling:
The program begins by reading two integers, a
and b
, which represent the ages of two participants in the game show.
Calculate Average Age:
The program calculates the average age by summing the two ages (a + b
) and dividing by 2. The result is stored in the variable c
.
Output:
The program then prints three statements:
- "I am
a
" where a
is the first participant's age. - "You are
b
" where b
is the second participant's age. - "We are around
c
" where c
is the calculated average age.
Program Flow:
- The first age is input and stored in
a
. - The second age is input and stored in
b
. - The average age is calculated and stored in
c
. - Finally, the program outputs the individual ages followed by the average age.
Summary: The program reads the ages of two participants, calculates their average age, and then outputs both individual ages and the average, formatted in a friendly way.