6. Read and Print Integer

Easy ⏱️ 3 min

Description

Read an integer and print the accepted integer value.

Input Format:
Accept an integer as a input
Output Format:
Print the read integer as output
Constraints:
1 ≤ N ≤ 10^15
Sample Input:
17
Sample Output:
17

Solution

#include <iostream>

using namespace std;

int main() {
    long long a;
    cin >> a;
    cout << a;
    return 0;
}