URI Online Judge
Problem 1001 Try 3 Times and Success.
What the Hell….
1 2 3 4 5 6 7 8 9 10 11 12 |
#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; } |