#include <stdio.h> int main () { int x; int y; scanf("%d",&x); if(x<0){ y=3; } else if(x=0){ y=100; } else{ y=3*x;} printf("%d",y); return 0; }