#include <stdio.h>
#include <stdint.h>
#include <string.h>
int s=1;
int st=0;
int custom_atoi(const char *str) {
// Your logic here
for(int i=0;i<sizeof(str);i++)
{
if(str[i]>57 || str[i]<43)
return s*st;
if(str[i]==45)
s=-1;
if(str[i]>47 && str[i]<58)
{
st=10*st+int(str[i])-48;
}
}
}
int main() {
char str[101];
fgets(str, sizeof(str), stdin);
// Remove newline
uint8_t i = 0;
while (str[i]) {
if (str[i] == '\n') {
str[i] = '\0';
break;
}
i++;
}
printf("%d", custom_atoi(str));
return 0;
}