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