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

13 lines
186 B
C++

#include <bits/stdc++.h>
using namespace std;
int main() {
float t;
int n;
cin >> t >> n;
printf("%.3f\n", t / n);
printf("%d", n * 2);
return 0;
}