// vypocet absolutni hodnoty
#include<iostream>
using namespace std;
int main(void){
  double x;
  cin >> x;
  if (x<0)
    x = -x;  // obrati znamenko pokud je x<0
    cout  <<  "|x|=" << x << endl;
  return 0;
}
