Read an integer and print the accepted integer value.
#include <iostream> using namespace std; int main() { long long a; cin >> a; cout << a; return 0; }