# include<iostream> using namespace std; void b(double a){ if(a<0)cout<<a-a-a; else cout<<a; }int main(){ double a;cin>>a; b(a); return 0; }