Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- #include <stdio.h>
- int main() {
- int n;
- scanf("%d", &n);
- int tmp = n;
- int broj = 0;
- while(tmp > 0) {
- int cifra = tmp % 10;
- broj = (broj * 10) + cifra;
- tmp /= 10;
- }
- printf("%d\n", broj);
- if(broj == n) {
- printf("DA\n");
- }
- else {
- printf("NE\n");
- }
- return 0;
- }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement