mirror of
https://github.com/tiennm99/codechef.git
synced 2026-06-10 10:10:40 +00:00
20 lines
249 B
C++
20 lines
249 B
C++
#include <iostream>
|
|
|
|
using namespace std;
|
|
|
|
int main()
|
|
{
|
|
int x;
|
|
float y;
|
|
cin >> x >> y;
|
|
if (x%5 == 0 && (y - x) > 0.5)
|
|
{
|
|
cout << y - (x + 0.5) << endl;
|
|
}
|
|
else
|
|
{
|
|
cout << y << endl;
|
|
}
|
|
return 0;
|
|
}
|