fork download
  1. #include <bits/stdc++.h>
  2. using namespace std;
  3.  
  4. int main() {
  5. string name;
  6. int age;
  7. cin >> name >> age;
  8. cout << "IN 15 YEAR,AGE OF" << " " << name << " " << "WILL BE" << age+15 << endl;
  9. return 0;
  10. }
Success #stdin #stdout 0.01s 5320KB
stdin
Standard input is empty
stdout
IN 15 YEAR,AGE OF  WILL BE15