=================================================================================
#include <stdio.h>
using namespace std;
int main()
{
char nama[50],alamat[100],npm[10];
cout<<"Masukan Nama = ";
gets(nama);
cout<<"Masukan NPM = ";
gets(npm);
cout<<"Masukan Alamat = ";
gets(alamat);
cout<<endl<<endl;
cout<<". : Biodata Mahasiswa : .";
cout<<endl;
cout<<"Nama : "<<nama;
cout<<endl;
cout<<"NPM : "<<npm;
cout<<endl;
cout<<"Alamat : "<<alamat;
cout<<endl;
}