Help me in solving PPSCPP05 problem

My issue

what’s hapenned

My code

#include <iostream>
using namespace std;

int main() {
    int 7,3;
    cin>>7>>3>>endl;
    cout<<7<<3<<endl;
  
  return 0;
}

Learning course: Complete C++ course
Problem Link: Multiple Outputs Practice Problem in Complete C++ course - CodeChef

@sahanamagi
u have to do it like this

#include <iostream>
using namespace std;

int main() {

  cout << 7;
  cout << 3;
  
  return 0;
}