Untitled

 avatar
unknown
plain_text
a year ago
154 B
8
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