#include <unistd.h>
#include <stdio.h>

int main(int argc, char ** argv){
  pid_t pid = fork();
  printf("%d\n",getpid());
  printf("%d\n",pid);
}

