Read and write an int value from and to console
#include <stdio.h> int main(void) { int i; scanf("%d", &i); printf("%d", i); return 0; }