Last active
May 29, 2023 11:06
-
-
Save rajurayhan/081f4aaa5e94a7f46b0c to your computer and use it in GitHub Desktop.
URI Online Judge Solution: 1001- Extremely Basic
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#include<stdio.h> | |
int main() | |
{ | |
int A, B, X; | |
scanf("%d", &A); | |
scanf("%d", &B); | |
X=A+B; | |
printf("X = %d\n",X); | |
return 0; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
wow,it's lovly code