
#include<stdio.h>
#include<conio.h>
#include<string.h>
int main() {
int i, nextTerm;
int t1 = 2, t2 = 2;
nextTerm = t1+t2;
printf("%d, %d, ", t1, t2);
for (i = 3; i <= 10; ++i) {
printf("%d, ", nextTerm);
t1 = t2;
t2 = nextTerm;
nextTerm = t1 + t2;
}
return 0;
}


In mitosis, the prophase is further understood by dividing it into the given sub-stages:
1.Leptotene :
In this stage the nucleus enlarges in size in the chromosome. The chromosomes appear thin, thread-like and single-stranded in this stage. They have swollen or beaded structures along their length and their ends appear converged towards one side of the nucleus called bouquet.
2.Zygotene:
In this stage, the identical chromosomes come together and form bivalent or homologous pairs. Further, ...
The Rh factor(the Rhesus factor or Rh antigen), is a protein that can be found on the surface of red blood cells. It is one of the most important blood group systems in human blood typing. The presence or absence of the Rh factor is denoted as either Rh-positive (+) or Rh-negative (-).
Fun fact: The Rh factor is named after the Rhesus monkey, in which the protein was first discovered.