#include "stdio.h"
#include "stdlib.h"
#include "conio.h"
#include "iostream.h"
void main ( void )
{
int edad;
int nueva_edad;
clrscr();
cout << endl << "HOLA";
cout << endl << "COMO ESTAS TU";
cout << endl << "spirffvsdsdfgsdf jkfhgdf j dhgDL DAFG ";
// LA DE ABAJO ES ESCRIBE
cout << endl << " ";
//lee
cout << endl << " edad: "; cin >> edad;
nueva_edad = edad + 20;
cout << endl << "tu edad en el 2025 sera : " << nueva_edad;
getch ();
}