New Delhi: Donald Trump has become the President of America. After taking oath, his attitude seems different in this term. The strictness he is showing on Canada and Mexico. Perhaps it is not visible that much against China. Even regarding Russia his tone seems soft. Donald Trump has now gone one step ahead. He has described Russian President Vladimir Putin as smart. US President Donald Trump said on Tuesday that he can talk to his Russian counterpart Vladimir Putin ‘very soon’. Donald Trump has one regret about the Russia-Ukraine war. He says that if he had been president, there would never have been a war between Ukraine and Russia. Donald Trump once again called for an end to the Russian invasion of Ukraine nearly three years ago and the subsequent conflict. Yes, the war between Russia and Ukraine has been going on for almost three years. Thousands of deaths have occurred during this period. Ukraine is repeatedly appealing to the world to end the war. Describing Russian President Vladimir Putin as ‘smart’, US President Donald Trump said, ‘Russia never goes into Ukraine. Putin and I had a very good and strong understanding. This never happens. Putin disrespected Joe Biden. He is smart. He understands. If I had been President, there would have been no war. He even said that he is ready to meet his Russian counterpart Vladimir Putin any time. But he also warned that if Russia does not come to the negotiating table on the Ukraine issue, he will impose sanctions on Russia. Will America impose sanctions on Russia? On whether America will impose additional sanctions on Russia, Trump said, ‘It is a complete possibility. If Putin is not ready to talk, we will not shy away from doing so. Trump said, ‘This war should not have started. If you had a capable President, which you did not have, there would not have been a war. If I were president, there would never have been a war in Ukraine. ‘I am ready to meet Putin’ On the question of meeting Putin, he said that whenever he wants, I will meet him. Millions of people are being killed…it’s a vicious cycle and now they are soldiers on a large scale. Many people have died and cities look like sites of destruction. Trump told reporters that the thing with Ukraine is that more people have been killed than you are reporting. You are not reporting the actual numbers, and I am not blaming you for that. I’m probably blaming our government for not releasing those numbers. Location :Delhi,Delhi,DelhiFirst Published :January 22, 2025, 11:17 ISThomeworldPutin is smart…will Trump’s attitude change as soon as he becomes President? What to regret
Credit-Read More
// Function to fetch the latest posts
function fetchLatestPosts() {
const feedUrl = ‘https://newskiosk.pro/feed/’; // Replace with your blog’s RSS feed URL
fetch(feedUrl)
.then(response => response.text())
.then(str => new window.DOMParser().parseFromString(str, “text/xml”))
.then(data => {
const items = Array.from(data.querySelectorAll(“item”));
const latestPostsContainer = document.getElementById(“latest-posts”);
latestPostsContainer.innerHTML = ”; // Clear previous posts
// Shuffle the items array
const shuffledItems = items.sort(() => Math.random() – 0.5);
// Select the first 5 items from the shuffled array
const selectedItems = shuffledItems.slice(0, 5);
Random Latest Posts Display // Loop through the selected items and display them
selectedItems.forEach(post => {
const link = post.querySelector(“link”).textContent;
const description = post.querySelector(“description”).textContent;
// Create a new post element
const postElement = document.createElement(“div”);
postElement.classList.add(“latest-post”);
postElement.innerHTML = `
${description} Read more
`;
// Append the new post element to the container
latestPostsContainer.appendChild(postElement);
});
})
.catch(error => console.error(‘Error fetching the latest posts:’, error));
}
// Call the function to fetch and display the latest posts
fetchLatestPosts();