#include <iostream> #include <string> using namespace std; struct student { // write your code here...... string name; int age; double height; }; int main() { // write your code here...... student studentone; cin>>studentone.name>>studentone.age>>studentone.height; cout<<studentone.name<<' '<<studentone.age<<" "<<studentone.height<<endl; return 0; }