3 solutions
- 1
Information
- ID
- 526
- Time
- 1000ms
- Memory
- 64MiB
- Difficulty
- 3
- Tags
- # Submissions
- 173
- Accepted
- 90
- Uploaded By
#include <bits/stdc++.h> using namespace std;
int main() { int a; double b; int c; cin >> a >> b; b = b / 10; c = a * b; c = c + 5; c = c / 10; c = c * 10; cout << c; return 0; }