#include <stdio.h>#include<math.h>int main(){ int n; scanf("%d",&n); if(n<0) { printf("%d\n",-n); } else { printf("%d\n",n); } return 0;}
No comments