Write a c
program that accepts a number, n, and outputs the same.
Input
The only line contains a single integer.
Output
Output the answer in a single line.
Constraints
0 ≤ n ≤ 105
Sample Input
123
Sample Output
123
Answers
Answered by
2
Answer:
105
Explanation:
please mark me as brainliest and follow me
Answered by
2
Answer:
#include <stdio.h>
int main() {
int number;
printf("Enter an integer: ");
scanf("%d", &number);
printf("You entered: %d", number);
return 0;
}
Explanation:
Similar questions