Posts

Showing posts with the label URI Extremely Basic

URI 1001

Solution of URI 1001  >> Extremely Basic #include<stdio.h> int main ( ) { int A,B,X ; scanf ( "%d%d" , & A, & B ) ; X = A + B ; printf ( "X = %d \n " , X ) ; return 0 ; }