#include <bits/stdc++.h>
using namespace std;
int main() {
pair< string, double > PAIR1("Suman Barik", 19);
cout << PAIR1.first << endl << endl;
cout << PAIR1.second;
return 0;
}
#include <bits/stdc++.h>
using namespace std;
int main() {
pair< string, double > PAIR1("Suman Barik", 19);
cout << PAIR1.first << endl << endl;
cout << PAIR1.second;
return 0;
}