Files
python/LuoGu/RuMen/P1421.cpp
HuangHai 1f397eca87 'commit'
2025-08-30 18:35:01 +08:00

14 lines
205 B
C++

#include<iostream>
using namespace std;
int main() {
int a, b;
cin >> a >> b;
float c = 1.9;
float d = a + b * 0.1;
int e = d / c;
cout << e << endl;
return 0;
}