Problem B

Anonymous
c_cpp
01/25/2024 7:40 AM
288 B
26
Indexable
#include <bits/stdc++.h>

using namespace std;

int main() {
    int a, b;
    cin >> a >> b;
    double c = sqrt(a * a + b * b);
    cout << fixed << setprecision(6) << c;
    return 0;    
}





Editor is loading...
Leave a Comment