Skip to content

Instantly share code, notes, and snippets.

@rajurayhan
Last active May 29, 2023 11:06
Show Gist options
  • Save rajurayhan/081f4aaa5e94a7f46b0c to your computer and use it in GitHub Desktop.
Save rajurayhan/081f4aaa5e94a7f46b0c to your computer and use it in GitHub Desktop.
URI Online Judge Solution: 1001- Extremely Basic
#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;
}
@masukmia1234
Copy link

wow,it's lovly code

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment