#include<stdio.h> int main() { int x; x=10; printf("x=%d\n", x); x=x+3; printf("x=%d\n", x); return (0); }