mirror of
https://github.com/wczffl-503/OI-Codes.git
synced 2025-05-11 00:30:27 +08:00
11 lines
159 B
C++
11 lines
159 B
C++
#include <iostream>
|
|
#include <iomanip>
|
|
using namespace std;
|
|
int main(){
|
|
float a;
|
|
float b;
|
|
cin >>a>>b;
|
|
cout <<fixed<<setprecision(1)<<(a+b)*2;
|
|
return 0;
|
|
}
|