Respuesta :

Answer:

The statement is cin>>lastname;//In c++.

lastname=str(input("Enter the last name\n"))  #statement in python.

Following is the C++ code:-

#include <iostream>

#include<string>

using namespace std;

int main() {

   string lastname;//string variable to hold lastname.

   cout<<"Enter lastname of the user"<<endl;//printing a message.

   cin>>lastname;//taking input of the lastname..

   cout<<lastname;//printing lastname to check the value.

return 0;

}

Output:-

Enter lastname of the user

khurana

khurana

Explanation:

You can assign the input to the lastname by using cin in c++ and input in python and creating a scanner class object in java.