#include<stdio.h> int abs(int x){ unsigned int y; y=x; return y; } int main(){ int x; scanf("%d",&x); printf("%d",abs(x)); return 0; }