Untitled

 avatar
unknown
c_cpp
2 years ago
171 B
3
Indexable
#include <iostream>
using namespace std;
int main() 
{
    double X;
    cin >> X;
    double drobnyashast = X - (int)X;
    cout << drobnyashast;
    return 0;
}
Editor is loading...
Leave a Comment