Brian Kidd
Don Knotts Don King David Koresh
Jay Sean, Jessica Simpson, Jon Stewart, and Jerry Seinfeld all have the initials JS.
Happy Holiday
Nancy Kerrigan (U.S. Olympic figure skater) Nikita Khrushchev (1894-1971, leader of the USSR from 1953 to 1964)
Kathryn Dawn
Val Kilmer?
ed kranepool ...baseball
How about Patsy Kensit or Peter Kaye..
K. B. Quinan was born in 1878.
Famous people with the initials K P include: Katy Perry (pop singer) Kenny Perry (pro golfer) Kyle Petty (race car driver & son of Richard) Kevin Phillips (actor) Karen Pryor Karen Elaina Price - model, stunt woman and television producer. Kenneth Eugene Parnell - convicted sex offender Kyle Palmieri - NHL hockey player
#include<stdio.h> #include<conio.h> int A,B,GCF=1,K,X; main() { clrscr(); printf("First integer:"); scanf("%d",&A); printf("\nSecond integer:"); scanf("%d",&B); X=A*B; for(K=2; A!=1 B!=1; K++) { while (A%K==0 && B%K==0) { A/=K; B/=K; GCF*=K; } while(A%K==0) { A/=K; } while(B%K==0) { B/=K; } } printf("GCF is %d",GCF); getch(); }