#include<iostream> int main(){ int input = 0; // you should aways store inptu in a variable or the inptu won't work std::cout << "put the input/n" std::cin >> input; std::cout << "input accepted it is" << input << "thankyou"; }