📖 Definition:
I/O operations allow communication between user and program.
🔧 Operators:
cin→ Inputcout→ Output
Â
int age;
cin >> age;
cout << “Age: “ << age;
cin >> age;
cout << “Age: “ << age;
Â
🧪 Exercise:
- Take input of two numbers and print their sum

