#include <stdio.h>

int main() {
//operators
int a;
scanf("%d,&a");
int ans=a++;
printf("%d",ans);
return 0;
}