#25707: 很簡單的 AC


s910251@student.cysh.cy.edu.tw (吳亮佑)


#include<iostream>

using namespace std;

 

int main(void)

{

int n;

cin >> n;

cout << abs(n);

return 0;

}

 

cpp.