fork download
  1. #include <iostream>
  2. using namespace std;
  3.  
  4. const int MAX_SIZE = 10;
  5.  
  6. struct Elev {
  7. char nume[MAX_SIZE], prenume[MAX_SIZE];
  8. int nota;
  9. };
  10. int main() {
  11. Elev e;
  12. cin >> e.nume;
  13. cout << e.nume;
  14. return 0;
  15. }
Success #stdin #stdout 0.01s 5272KB
stdin
nume
stdout
nume