#include <iostream>
#include <string>
using namespace std;
int main() {
string name = "John";
int age = 35;
double height = 6.1;
cout << name << " is " << age << " years old and " << height << " feet tall.";
return 0;
}