| # | Time | Username | Problem | Language | Result | Execution time | Memory | 
|---|---|---|---|---|---|---|---|
| 1282019 | oji | scanf 함수 5 (BSC_0_7) | C++20 | 0 ms | 0 KiB | 
#include<bits/stdc++.h>
using namespace std;
int main(){
    double a,b;
    cin >> a >> b;
    double average = (a + b)/2
        cout << average << endl;
}
