mirror of
https://github.com/Kiritow/OJ-Problems-Source.git
synced 2024-03-22 13:11:29 +08:00
15 lines
270 B
C++
15 lines
270 B
C++
#include <iostream>
|
|
#include <string>
|
|
using namespace std;
|
|
|
|
int main()
|
|
{
|
|
string a,b,c,d,e,f;
|
|
cin>>a>>b>>c>>d>>e>>f;
|
|
cout<<"Num:"<<a<<endl;
|
|
cout<<"Sex:"<<b<<endl;
|
|
cout<<"Birth Date:"<<c<<" "<<d<<" "<<e<<endl;
|
|
cout<<"ID:"<<f<<endl;
|
|
return 0;
|
|
}
|