#19303: d058


peter961227 (unknowe)

學校 : 臺北市私立延平高級中學
編號 : 103745
來源 : [111.235.252.96]
最後登入時間 :
2021-04-23 16:02:01

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