#include int fa(int x){ return x+1; } int main(){ int n; while(scanf("%d", &n) > 0) printf("%d ", fa(n)); return 0; }