!!
#include <iostream>
using namespace std;
int main(){ int n; while(cin>>n){ if(n>0) cout<<n; else cout<<-n;}
return 0;}