19 lines
194 B
C++
19 lines
194 B
C++
#include <bits/stdc++.h>
|
|
|
|
using namespace std;
|
|
|
|
|
|
int main(){
|
|
ios::sync_with_stdio(0);
|
|
cin.tie(0);
|
|
|
|
float x;
|
|
|
|
cin >> x;
|
|
|
|
cout << round(x);
|
|
|
|
cout << flush;
|
|
|
|
return 0;
|
|
} |