Untitled

Anonymous
plain_text
07/21/2024 5:16 PM
208 B
17
Indexable
#include <iostream>

using namespace std;

int main()
{
    float a,b;
    cin>>a>>b;
    float avg=(a+b)/2;

    cout<<avg;
    return 0;
}
Editor is loading...
Leave a Comment