#include <iostream> using namespace std; int x; int main(void) { scanf("%d", &x); return printf("%d\n", x < 0 ? -x : x), 0; }