Skip to content
Popup Example

Earn From News Kiosk

Panama turned to UN on Trump’s threats, President Mulino’s statement

January 22, 2025
Panama turned to UN on Trump’s threats, President Mulino’s statement

News kiosk- Are You Making These Common Mistakes? Click below to Learn More

Secret That Everyone Is Talking About

News kiosk Latest Posts

If you want to dive deeper into the topic, click on Read More:

Gardening with Ecorganicas: Your Source for Organic Gardening Tips Financial potential with expert tips on budgeting, investing, and saving Unlock the Hidden Truth: Click to Reveal!

Last Updated:January 22, 2025, 17:50 IST Amid US President Donald Trump’s threats to take over the Panama Canal, Panama has turned to the United Nations. Panama has cited the UN Charter, which does not guarantee the territorial integrity or political independence of any country…read morePanama has complained about America to the UN. (AP)Panama City: US President Donald Trump repeated his threat to capture the Panama Canal as soon as he took oath. Trump currently has the most powerful army in the world. If he is threatening then it is possible that America may try to capture this strategic canal by sending troops. Fearing Trump’s threats, Panama has now turned to the United Nations. A letter has been written on behalf of Panama to United Nations Secretary General Antonio Guterres. In this letter, Panama has cited that article of the UN Charter, which prohibits the use or threat of force against the territorial integrity or political independence of any country. Describing Trump’s threats as ‘worrying’, Panama said that this should be discussed in the United Nations Security Council (UNSC). However, the letter does not demand calling a UNSC meeting. In a related development, Panamanian President Jose Raul Mulino rejected Trump’s claim that the US had gifted the canal to Panama. Mulino said at the World Economic Forum in Davos, Switzerland, ‘We completely reject everything Trump has said. First of all, this is a lie and second, the Panama Canal belongs to Panama and will always remain Panama’s. The Panama Canal was not a gift or concession from America. Trump threatens to take back Panama Canal In line with Russian President Vladimir Putin’s rehabilitationist agenda, Trump has issued threats of invasion and occupation to Western countries in recent weeks. He has called for the occupation of Greenland, the use of force to capture the Panama Canal and the occupation of Canada. In his inaugural address, Trump referred to the occupation of Panama, saying ‘we’re taking it back’. He said American ships are charged more to transit the canal than other ships and falsely claimed that the canal is run by China, not Panama. Trump said, ‘We have been treated very badly by this stupid gift that should never have been given. And Panama’s promise to us has been broken. The purpose of our agreement and the spirit of our treaty have been completely violated. American ships are being overcharged and not being treated fairly in any way, and that includes the US Navy. The biggest thing in this is that China is running the Panama Canal and we did not give it to China, we gave it to Panama, and we are taking it back. What did Panama say on Trump’s statement? Panamanian President Mulino reacted immediately. Shortly after Trump’s speech, he issued a statement rejecting Trump’s calls for annexation and saying that the canal ‘belongs to Panama and will always belong to Panama and its administration will remain under the control of Panama, with respect for its permanent neutrality. ‘. According to the report of news agency AFP, Panama has rejected Trump’s comments and has turned to the UN. It has announced ‘a comprehensive audit’ into the Panama Ports Company, which manages the canal, with the aim of ‘ensuring the efficient and transparent use of public resources’. Although China does not manage the canal, a Chinese company manages two ports on the canal and the audit will determine whether the company is following its concession agreements, including adequate reporting of income, payments and contributions to the country. Is. Location :New Delhi,New Delhi,DelhiFirst Published :January 22, 2025, 17:50 ISThomeworldPanama stood up against Trump’s bullying, America complained to UN

Credit-Read More

News kiosk Latest Posts

// 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);

// 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();